mirror of
https://github.com/zhigang1992/qingshuiTemple.git
synced 2026-01-12 16:33:16 +08:00
65 lines
1.5 KiB
Ruby
65 lines
1.5 KiB
Ruby
source 'http://ruby.taobao.org'
|
|
|
|
gem 'rails', github: 'rails/rails'
|
|
gem 'arel', github: 'rails/arel'
|
|
gem 'activerecord-deprecated_finders', github: 'rails/activerecord-deprecated_finders'
|
|
|
|
|
|
|
|
# Gems used only for assets and not required
|
|
# in production environments by default.
|
|
group :assets do
|
|
gem 'sprockets-rails', github: 'rails/sprockets-rails'
|
|
gem 'sass-rails', github: 'rails/sass-rails'
|
|
gem 'coffee-rails', github: 'rails/coffee-rails'
|
|
|
|
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
|
|
# gem 'therubyracer', platforms: :ruby
|
|
|
|
gem 'uglifier', '>= 1.0.3'
|
|
end
|
|
|
|
gem 'jquery-rails'
|
|
|
|
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
|
|
gem 'turbolinks'
|
|
|
|
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
|
gem 'jbuilder', '~> 1.0.1'
|
|
|
|
# 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'
|
|
|
|
# Mongodb
|
|
gem 'mongoid', git: 'git://github.com/mongoid/mongoid.git', branch: '4.0.0-dev'
|
|
|
|
gem 'slim-rails'
|
|
|
|
# Server
|
|
gem 'thin'
|
|
|
|
group :test, :development do
|
|
# Test
|
|
gem 'rspec-rails', '~> 2.12.2'
|
|
gem 'factory_girl_rails', '~> 4.2.0'
|
|
|
|
# Debugger
|
|
gem 'pry-rails'
|
|
gem 'pry'
|
|
gem 'pry-remote'
|
|
gem 'pry-stack_explorer'
|
|
gem 'pry-debugger'
|
|
gem 'better_errors'
|
|
gem 'binding_of_caller'
|
|
|
|
end
|