Gemfile 794 字节
Newer Older
1 2
source 'https://rubygems.org'

3
gem 'rails', '3.2.3'
4 5

# Bundle edge Rails instead:
6
# gem 'rails', :git => 'git://github.com/rails/rails.git'
7 8 9 10 11 12 13

gem 'sqlite3'


# Gems used only for assets and not required
# in production environments by default.
group :assets do
14 15 16 17
  gem 'sass-rails',   '~> 3.2.3'
  gem 'coffee-rails', '~> 3.2.1'

  # See https://github.com/sstephenson/execjs#readme for more supported runtimes
18
  # gem 'therubyracer', :platform => :ruby
19 20

  gem 'uglifier', '>= 1.0.3'
21 22 23 24
end

gem 'jquery-rails'

25 26 27 28 29 30
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'

# To use Jbuilder templates for JSON
# gem 'jbuilder'

31
# Use unicorn as the app server
32 33 34 35 36 37 38
# gem 'unicorn'

# Deploy with Capistrano
# gem 'capistrano'

# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'