Moving to cedar
This commit is contained in:
parent
e91b7fc2a8
commit
c6dcc070db
3
Gemfile
3
Gemfile
|
@ -1,6 +1,7 @@
|
||||||
source 'http://rubygems.org'
|
source 'http://rubygems.org'
|
||||||
|
|
||||||
gem 'rails', '3.1.0'
|
gem 'rails', '3.1.0'
|
||||||
|
gem 'unicorn'
|
||||||
|
|
||||||
gem 'json'
|
gem 'json'
|
||||||
gem 'nokogiri'
|
gem 'nokogiri'
|
||||||
|
@ -10,7 +11,6 @@ gem 'sass'
|
||||||
gem 'coffee-script'
|
gem 'coffee-script'
|
||||||
|
|
||||||
gem 'therubyracer', :require => false
|
gem 'therubyracer', :require => false
|
||||||
# gem 'barista'
|
|
||||||
|
|
||||||
gem 'awesome_print', :require => 'ap'
|
gem 'awesome_print', :require => 'ap'
|
||||||
gem 'delayed_job'
|
gem 'delayed_job'
|
||||||
|
@ -26,5 +26,4 @@ end
|
||||||
group :production do
|
group :production do
|
||||||
gem 'pg'
|
gem 'pg'
|
||||||
gem 'uglifier'
|
gem 'uglifier'
|
||||||
gem 'thin'
|
|
||||||
end
|
end
|
15
Gemfile.lock
15
Gemfile.lock
|
@ -52,13 +52,13 @@ GEM
|
||||||
activesupport (~> 3.0)
|
activesupport (~> 3.0)
|
||||||
daemons
|
daemons
|
||||||
erubis (2.7.0)
|
erubis (2.7.0)
|
||||||
eventmachine (0.12.10)
|
|
||||||
execjs (1.2.9)
|
execjs (1.2.9)
|
||||||
multi_json (~> 1.0)
|
multi_json (~> 1.0)
|
||||||
haml (3.1.3)
|
haml (3.1.3)
|
||||||
hike (1.2.1)
|
hike (1.2.1)
|
||||||
i18n (0.6.0)
|
i18n (0.6.0)
|
||||||
json (1.6.1)
|
json (1.6.1)
|
||||||
|
kgio (2.6.0)
|
||||||
libv8 (3.3.10.2)
|
libv8 (3.3.10.2)
|
||||||
mail (2.3.0)
|
mail (2.3.0)
|
||||||
i18n (>= 0.4.0)
|
i18n (>= 0.4.0)
|
||||||
|
@ -96,6 +96,7 @@ GEM
|
||||||
rake (>= 0.8.7)
|
rake (>= 0.8.7)
|
||||||
rdoc (~> 3.4)
|
rdoc (~> 3.4)
|
||||||
thor (~> 0.14.6)
|
thor (~> 0.14.6)
|
||||||
|
raindrops (0.7.0)
|
||||||
rake (0.9.2)
|
rake (0.9.2)
|
||||||
rdoc (3.9.4)
|
rdoc (3.9.4)
|
||||||
sass (3.1.8)
|
sass (3.1.8)
|
||||||
|
@ -103,12 +104,8 @@ GEM
|
||||||
hike (~> 1.2)
|
hike (~> 1.2)
|
||||||
rack (~> 1.0)
|
rack (~> 1.0)
|
||||||
tilt (~> 1.1, != 1.3.0)
|
tilt (~> 1.1, != 1.3.0)
|
||||||
therubyracer (0.9.4)
|
therubyracer (0.9.5)
|
||||||
libv8 (~> 3.3.10)
|
libv8 (~> 3.3.10)
|
||||||
thin (1.2.11)
|
|
||||||
daemons (>= 1.0.9)
|
|
||||||
eventmachine (>= 0.12.6)
|
|
||||||
rack (>= 1.0.0)
|
|
||||||
thor (0.14.6)
|
thor (0.14.6)
|
||||||
tilt (1.3.3)
|
tilt (1.3.3)
|
||||||
treetop (1.4.10)
|
treetop (1.4.10)
|
||||||
|
@ -118,6 +115,10 @@ GEM
|
||||||
uglifier (1.0.3)
|
uglifier (1.0.3)
|
||||||
execjs (>= 0.3.0)
|
execjs (>= 0.3.0)
|
||||||
multi_json (>= 1.0.2)
|
multi_json (>= 1.0.2)
|
||||||
|
unicorn (4.1.1)
|
||||||
|
kgio (~> 2.4)
|
||||||
|
rack
|
||||||
|
raindrops (~> 0.6)
|
||||||
|
|
||||||
PLATFORMS
|
PLATFORMS
|
||||||
ruby
|
ruby
|
||||||
|
@ -137,5 +138,5 @@ DEPENDENCIES
|
||||||
rails (= 3.1.0)
|
rails (= 3.1.0)
|
||||||
sass
|
sass
|
||||||
therubyracer
|
therubyracer
|
||||||
thin
|
|
||||||
uglifier
|
uglifier
|
||||||
|
unicorn
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
web: bundle exec unicorn -p $PORT -c ./config/unicorn.rb
|
|
@ -0,0 +1,2 @@
|
||||||
|
worker_processes 2 # amount of unicorn workers to spin up
|
||||||
|
timeout 30 # restarts workers that hang for 30 seconds
|
Loading…
Reference in New Issue