rails/Gemfile

79 lines
1.6 KiB
Ruby
Raw Normal View History

source 'https://rubygems.org'
2010-02-01 08:33:06 +08:00
gemspec
gem 'mocha', '~> 0.14'
gem 'rack-cache', '~> 1.2'
gem 'bcrypt-ruby', '~> 3.0.0'
gem 'jquery-rails', '~> 2.2.0'
2012-10-05 21:35:03 +08:00
gem 'turbolinks'
2013-04-19 01:09:08 +08:00
gem 'coffee-rails', '~> 4.0.0'
2011-09-09 01:51:23 +08:00
2011-07-07 08:38:54 +08:00
# This needs to be with require false to avoid
# it being automatically loaded by sprockets
gem 'uglifier', '>= 1.3.0', require: false
group :doc do
2013-04-02 21:28:19 +08:00
gem 'sdoc'
gem 'redcarpet', '~> 2.2.2', platforms: :ruby
gem 'w3c_validators'
gem 'kindlerb'
end
# AS
gem 'dalli', '>= 2.2.1'
# Add your own local bundler stuff
2012-01-02 21:08:37 +08:00
local_gemfile = File.dirname(__FILE__) + "/.Gemfile"
instance_eval File.read local_gemfile if File.exists? local_gemfile
group :test do
platforms :mri_19 do
gem 'ruby-prof', '~> 0.11.2'
end
platforms :mri_19, :mri_20 do
gem 'debugger'
end
2013-03-12 02:49:05 +08:00
gem 'benchmark-ips'
end
platforms :ruby do
gem 'yajl-ruby'
gem 'nokogiri', '>= 1.4.5'
2011-05-06 01:47:07 +08:00
# Needed for compiling the ActionDispatch::Journey parser
gem 'racc', '>=1.4.6', require: false
# AR
2012-05-16 11:25:30 +08:00
gem 'sqlite3', '~> 1.3.6'
group :db do
gem 'pg', '>= 0.11.0'
gem 'mysql', '>= 2.9.0'
gem 'mysql2', '>= 0.3.10'
end
end
platforms :jruby do
gem 'json'
gem 'activerecord-jdbcsqlite3-adapter', '>= 1.2.7'
group :db do
gem 'activerecord-jdbcmysql-adapter', '>= 1.2.7'
gem 'activerecord-jdbcpostgresql-adapter', '>= 1.2.7'
end
end
# gems that are necessary for ActiveRecord tests with Oracle database
if ENV['ORACLE_ENHANCED']
platforms :ruby do
gem 'ruby-oci8', '>= 2.0.4'
end
gem 'activerecord-oracle_enhanced-adapter', github: 'rsim/oracle-enhanced', branch: 'master'
end
2011-10-03 23:56:11 +08:00
# A gem necessary for ActiveRecord tests with IBM DB
gem 'ibm_db' if ENV['IBM_DB']