assuming heroku is default

This commit is contained in:
Espen Antonsen 2011-09-25 12:57:20 +08:00
parent 9e5db12f61
commit 58f60a89af
3 changed files with 21 additions and 8 deletions

View file

@ -7,13 +7,16 @@ gem 'authlogic'
gem 'mime-types', :require => 'mime/types' gem 'mime-types', :require => 'mime/types'
gem 'carrierwave' gem 'carrierwave'
# -- Heroku
gem 'heroku'
# -- Database # -- Database
# SQLite # SQLite
gem 'sqlite3-ruby' #gem 'sqlite3-ruby'
# MySQL: # MySQL:
#gem 'mysql2', '~> 0.2.7' # Use version 0.3 and up for Rails 3.1 #gem 'mysql2', '~> 0.2.7' # Use version 0.3 and up for Rails 3.1
# PostgreSQL: # PostgreSQL: (use this on Heroku)
#gem 'pg' gem 'pg'
# -- Cloud storage # -- Cloud storage
# AWS S3 support. Can be disabled if using local file system instead of cloud storage. # AWS S3 support. Can be disabled if using local file system instead of cloud storage.

View file

@ -30,6 +30,7 @@ GEM
activesupport (= 3.1.0) activesupport (= 3.1.0)
activesupport (3.1.0) activesupport (3.1.0)
multi_json (~> 1.0) multi_json (~> 1.0)
addressable (2.2.6)
arel (2.2.1) arel (2.2.1)
authlogic (3.0.3) authlogic (3.0.3)
activerecord (>= 3.0.7) activerecord (>= 3.0.7)
@ -51,8 +52,15 @@ GEM
nokogiri (~> 1.5.0) nokogiri (~> 1.5.0)
ruby-hmac ruby-hmac
formatador (0.2.1) formatador (0.2.1)
heroku (2.8.1)
launchy (>= 0.3.2)
rest-client (~> 1.6.1)
rubyzip
term-ansicolor (~> 1.0.5)
hike (1.2.1) hike (1.2.1)
i18n (0.6.0) i18n (0.6.0)
launchy (2.0.5)
addressable (~> 2.2.6)
mail (2.3.0) mail (2.3.0)
i18n (>= 0.4.0) i18n (>= 0.4.0)
mime-types (~> 1.16) mime-types (~> 1.16)
@ -66,6 +74,7 @@ GEM
net-ssh (>= 1.99.1) net-ssh (>= 1.99.1)
net-ssh (2.1.4) net-ssh (2.1.4)
nokogiri (1.5.0) nokogiri (1.5.0)
pg (0.11.0)
polyglot (0.3.2) polyglot (0.3.2)
rack (1.3.3) rack (1.3.3)
rack-cache (1.0.3) rack-cache (1.0.3)
@ -93,15 +102,16 @@ GEM
thor (~> 0.14.6) thor (~> 0.14.6)
rake (0.9.2) rake (0.9.2)
rdoc (3.9.4) rdoc (3.9.4)
rest-client (1.6.7)
mime-types (>= 1.16)
ruby-hmac (0.4.0) ruby-hmac (0.4.0)
rubyzip (0.9.4)
sprockets (2.0.0) sprockets (2.0.0)
hike (~> 1.2) hike (~> 1.2)
rack (~> 1.0) rack (~> 1.0)
tilt (!= 1.3.0, ~> 1.1) tilt (!= 1.3.0, ~> 1.1)
sqlite3 (1.3.4)
sqlite3-ruby (1.3.3)
sqlite3 (>= 1.3.3)
subexec (0.1.0) subexec (0.1.0)
term-ansicolor (1.0.6)
thor (0.14.6) thor (0.14.6)
tilt (1.3.3) tilt (1.3.3)
treetop (1.4.10) treetop (1.4.10)
@ -116,8 +126,9 @@ DEPENDENCIES
authlogic authlogic
carrierwave carrierwave
fog fog
heroku
mime-types mime-types
mini_exiftool mini_exiftool
mini_magick mini_magick
pg
rails (= 3.1.0) rails (= 3.1.0)
sqlite3-ruby

View file

@ -11,7 +11,6 @@ Balder::Application.configure do
# Show full error reports and disable caching # Show full error reports and disable caching
config.consider_all_requests_local = true config.consider_all_requests_local = true
config.action_view.debug_rjs = true
config.action_controller.perform_caching = false config.action_controller.perform_caching = false
# Don't care if the mailer can't send # Don't care if the mailer can't send