Commit 5e93494db2c3980055dee36412da34dd315713aa

Authored by Jacob Vosmaer
1 parent d27224ce

Use a block for the unicorn gems

Showing 1 changed file with 4 additions and 2 deletions   Show diff stats
Gemfile
... ... @@ -85,8 +85,10 @@ gem "github-markup", "~> 0.7.4", require: 'github/markup'
85 85 gem "asciidoctor"
86 86  
87 87 # Application server
88   -gem "unicorn", '~> 4.6.3', group: :unicorn
89   -gem 'unicorn-worker-killer', group: :unicorn
  88 +group :unicorn do
  89 + gem "unicorn", '~> 4.6.3'
  90 + gem 'unicorn-worker-killer'
  91 +end
90 92  
91 93 # State machine
92 94 gem "state_machine"
... ...