aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/rails/app/templates/Gemfile
blob: abe8c1556c8aabde86fdcd768eae3696881babbc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Gemfile is where you list all of your application's dependencies
#
gem "rails", "<%= Rails::VERSION::STRING %>"
#
# Bundling edge rails:
# gem "rails", "<%= Rails::VERSION::STRING %>", :git => "git://github.com/rails/rails.git"

# Specify gemcutter as a gem source
# source "http://gemcutter.org"

# Specify gems that this application depends on and have them installed with rake gems:install
# gem "bj"
# gem "hpricot", "0.6"
# gem "sqlite3-ruby", :require_as => "sqlite3"
# gem "aws-s3", :require_as => "aws/s3"

# Specify gems that should only be required in certain environments
# gem "rspec", :only => :test
# only :test do
#   gem "webrat"
# end