OSDN Git Service

Install unicorn for production server
authoreagletmt <eagletmt@gmail.com>
Sun, 21 Oct 2012 19:52:01 +0000 (04:52 +0900)
committereagletmt <eagletmt@gmail.com>
Mon, 22 Oct 2012 09:50:21 +0000 (18:50 +0900)
CutenServer/Gemfile
CutenServer/Gemfile.lock

index 68c1045..626f5ec 100644 (file)
@@ -34,6 +34,10 @@ group :test, :development do
   gem 'simplecov', :require => false
 end
 
+group :production do
+  gem 'unicorn'
+end
+
 # To use ActiveModel has_secure_password
 # gem 'bcrypt-ruby', '~> 3.0.0'
 
index 94a1cc4..44b9299 100644 (file)
@@ -77,6 +77,7 @@ GEM
       railties (>= 3.1.0, < 5.0)
       thor (~> 0.14)
     json (1.7.5)
+    kgio (2.7.4)
     libv8 (3.3.10.4)
     listen (0.5.3)
     mail (2.4.4)
@@ -109,6 +110,7 @@ GEM
       rake (>= 0.8.7)
       rdoc (~> 3.4)
       thor (>= 0.14.6, < 2.0)
+    raindrops (0.10.0)
     rake (0.9.2.2)
     rdoc (3.12)
       json (~> 1.4)
@@ -144,6 +146,10 @@ GEM
     uglifier (1.3.0)
       execjs (>= 0.3.0)
       multi_json (~> 1.0, >= 1.0.2)
+    unicorn (4.4.0)
+      kgio (~> 2.6)
+      rack
+      raindrops (~> 0.7)
     warden (1.2.1)
       rack (>= 1.0)
 
@@ -166,3 +172,4 @@ DEPENDENCIES
   sqlite3
   therubyracer
   uglifier (>= 1.0.3)
+  unicorn