From fedd864082fef557a2eb89665e6fd3b7714f038b Mon Sep 17 00:00:00 2001 From: Maxwell Salzberg Date: Fri, 13 Jan 2012 15:16:59 -0800 Subject: [PATCH] update heroku bundle to always include mysql --- Gemfile | 1 + Gemfile.lock | 2 ++ Procfile | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 80798761e..67348ab3e 100644 --- a/Gemfile +++ b/Gemfile @@ -38,6 +38,7 @@ end group :heroku do gem 'pg' + gem 'mysql' end gem 'settingslogic', :git => 'https://github.com/binarylogic/settingslogic.git' diff --git a/Gemfile.lock b/Gemfile.lock index 49bfd99df..66b07582a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -243,6 +243,7 @@ GEM gem_plugin (>= 0.2.3) multi_json (1.0.4) multipart-post (1.1.4) + mysql (2.8.1) mysql2 (0.2.17) net-scp (1.0.4) net-ssh (>= 1.99.1) @@ -455,6 +456,7 @@ DEPENDENCIES mobile-fu mock_redis mongrel + mysql mysql2 (= 0.2.17) newrelic_rpm nokogiri (~> 1.5.0) diff --git a/Procfile b/Procfile index e65f16603..f8e7db76b 100644 --- a/Procfile +++ b/Procfile @@ -1,3 +1,3 @@ -web: bundle exec rails s -p $PORT +web: bundle exec rails s thin -p $PORT redis: redis-server worker: QUEUE=* bundle exec rake resque:work