update heroku bundle to always include mysql
This commit is contained in:
parent
9dbe644b25
commit
fedd864082
3 changed files with 4 additions and 1 deletions
1
Gemfile
1
Gemfile
|
|
@ -38,6 +38,7 @@ end
|
||||||
|
|
||||||
group :heroku do
|
group :heroku do
|
||||||
gem 'pg'
|
gem 'pg'
|
||||||
|
gem 'mysql'
|
||||||
end
|
end
|
||||||
|
|
||||||
gem 'settingslogic', :git => 'https://github.com/binarylogic/settingslogic.git'
|
gem 'settingslogic', :git => 'https://github.com/binarylogic/settingslogic.git'
|
||||||
|
|
|
||||||
|
|
@ -243,6 +243,7 @@ GEM
|
||||||
gem_plugin (>= 0.2.3)
|
gem_plugin (>= 0.2.3)
|
||||||
multi_json (1.0.4)
|
multi_json (1.0.4)
|
||||||
multipart-post (1.1.4)
|
multipart-post (1.1.4)
|
||||||
|
mysql (2.8.1)
|
||||||
mysql2 (0.2.17)
|
mysql2 (0.2.17)
|
||||||
net-scp (1.0.4)
|
net-scp (1.0.4)
|
||||||
net-ssh (>= 1.99.1)
|
net-ssh (>= 1.99.1)
|
||||||
|
|
@ -455,6 +456,7 @@ DEPENDENCIES
|
||||||
mobile-fu
|
mobile-fu
|
||||||
mock_redis
|
mock_redis
|
||||||
mongrel
|
mongrel
|
||||||
|
mysql
|
||||||
mysql2 (= 0.2.17)
|
mysql2 (= 0.2.17)
|
||||||
newrelic_rpm
|
newrelic_rpm
|
||||||
nokogiri (~> 1.5.0)
|
nokogiri (~> 1.5.0)
|
||||||
|
|
|
||||||
2
Procfile
2
Procfile
|
|
@ -1,3 +1,3 @@
|
||||||
web: bundle exec rails s -p $PORT
|
web: bundle exec rails s thin -p $PORT
|
||||||
redis: redis-server
|
redis: redis-server
|
||||||
worker: QUEUE=* bundle exec rake resque:work
|
worker: QUEUE=* bundle exec rake resque:work
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue