diff options
-rw-r--r-- | Gemfile | 2 | ||||
-rw-r--r-- | Gemfile.lock | 6 | ||||
-rw-r--r-- | config/environments/development.rb | 2 |
3 files changed, 9 insertions, 1 deletions
@@ -73,6 +73,8 @@ gem 'uuid' # Application server gem 'unicorn' +gem 'thin' + # Local Variables: # mode: ruby # End: diff --git a/Gemfile.lock b/Gemfile.lock index b21a99e..79c6339 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -55,6 +55,7 @@ GEM compass-rails (1.0.3) compass (>= 0.12.2, < 0.14) cookiejar (0.3.0) + daemons (1.1.9) dalli (2.6.0) delayed_job (3.0.4) activesupport (~> 3.0) @@ -168,6 +169,10 @@ GEM railties (~> 3.0) subexec (0.2.2) systemu (2.5.2) + thin (1.5.0) + daemons (>= 1.0.9) + eventmachine (>= 0.12.6) + rack (>= 1.0.0) thor (0.16.0) tilt (1.3.3) treetop (1.4.12) @@ -221,6 +226,7 @@ DEPENDENCIES sqlite3 state_machine strong_parameters + thin uglifier (>= 1.3.0) unicorn uuid diff --git a/config/environments/development.rb b/config/environments/development.rb index 5076f48..1a3acae 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -40,7 +40,7 @@ Gemeinschaft42c::Application.configure do # Enable Hirb: extend Hirb::Console - Hirb::View.enable + Hirb::View.enable end |