aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/rails/app/templates/Gemfile
blob: cd674ddbddac3c2b4d81900287117a59c65f5b2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
source 'http://rubygems.org'

<%= rails_gemfile_entry -%>

<%= database_gemfile_entry -%>

<%= "gem 'jruby-openssl'\n" if defined?(JRUBY_VERSION) -%>
<%= "gem 'json'\n" if RUBY_VERSION < "1.9.2" -%>

# Gems used only for assets and not required
# in production environments by default.
group :assets do
  gem 'sass-rails'
  gem 'coffee-script'
  gem 'uglifier'
end

<%= javascript_gemfile_entry %>

# Use unicorn as the web server
# gem 'unicorn'

# Deploy with Capistrano
# gem 'capistrano'

# To use debugger
# <%= ruby_debugger_gemfile_entry %>

<%= turn_gemfile_entry -%>