Commit f585ae1ec0235fd22063a45a4b37ea8874643840

Authored by Rafael Manzo
2 parents 60a45e6e e27cd425

Merge pull request #297 from mezuro/foreman_gemfile

Put foreman gem in global scope on Gemfile
Showing 1 changed file with 3 additions and 3 deletions   Show diff stats
Gemfile
... ... @@ -84,6 +84,9 @@ group :test do
84 84 gem 'thin'
85 85 end
86 86  
  87 +# Startup script generation (server process manager)
  88 +gem 'foreman', '~>0.78.0'
  89 +
87 90 group :development, :test do
88 91 # Call 'byebug' anywhere in the code to stop execution and get a debugger console
89 92 gem 'byebug'
... ... @@ -126,9 +129,6 @@ group :development, :test do
126 129  
127 130 # Automatized gem update
128 131 gem 'gisdatigo'
129   -
130   - # Startup script generation (server process manager)
131   - gem 'foreman', '~>0.78.0'
132 132 end
133 133  
134 134 # Acceptance tests
... ...