Commit e27cd425992d590cec4f118c62c8f26140b5fe3b
1 parent
60a45e6e
Exists in
colab
and in
4 other branches
Put foreman gem in global scope on Gemfile
* This is needed for packaging on production environment
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 | ... | ... |