mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
43 lines
1,018 B
Ruby
43 lines
1,018 B
Ruby
source 'https://rubygems.org'
|
|
|
|
gem 'rails', '4.0.0'
|
|
|
|
# Use sqlite3 as the database for Active Record
|
|
gem 'sqlite3'
|
|
|
|
# Use SCSS for stylesheets
|
|
gem 'sass-rails'
|
|
|
|
# Use CoffeeScript for .js.coffee assets and views
|
|
gem 'coffee-rails'
|
|
|
|
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
|
|
# gem 'therubyracer', platforms: :ruby
|
|
|
|
# Use Uglifier as compressor for JavaScript assets
|
|
gem 'uglifier', '>= 1.0.3'
|
|
|
|
gem 'jquery-rails'
|
|
|
|
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
|
|
gem 'turbolinks'
|
|
|
|
group :doc do
|
|
# bundle exec rake doc:rails generates the API under doc/api.
|
|
gem 'sdoc', require: false
|
|
end
|
|
|
|
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
|
gem 'jbuilder', '~> 1.2'
|
|
|
|
# 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
|
|
|
|
# To use debugger
|
|
# gem 'debugger'
|