aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/rails/app/templates/Gemfile
blob: 2b80896c275d2689ad2746ab506b5cb93c9662da (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
source 'https://rubygems.org'

<%= rails_gemfile_entry -%>

<%= database_gemfile_entry -%>

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

<%= assets_gemfile_entry %>
<%= javascript_gemfile_entry -%>

# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder'

# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'

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

# Deploy with Capistrano
# gem 'capistrano', group: :development

<% unless defined?(JRUBY_VERSION) -%>
# To use debugger
# gem 'debugger'
<% end -%>