rails--rails/Gemfile

84 lines
1.8 KiB
Ruby
Raw Normal View History

source 'https://rubygems.org'
2010-02-01 00:33:06 +00:00
gemspec
# This needs to be with require false as it is
# loaded after loading the test library to
# ensure correct loading order
gem 'mocha', '~> 0.14', require: false
gem 'rack-cache', '~> 1.2'
2013-07-17 09:49:47 +00:00
gem 'bcrypt-ruby', '~> 3.1.0'
gem 'jquery-rails', '~> 2.2.0'
2012-10-05 13:35:03 +00:00
gem 'turbolinks'
2013-04-18 17:09:08 +00:00
gem 'coffee-rails', '~> 4.0.0'
2011-09-08 17:51:23 +00:00
2011-07-07 00:38:54 +00: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 13:28:19 +00: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 13:08:37 +00: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-11 18:49:05 +00:00
gem 'benchmark-ips'
end
platforms :ruby do
gem 'yajl-ruby'
gem 'nokogiri', '>= 1.4.5'
2011-05-05 17:47:07 +00:00
# Needed for compiling the ActionDispatch::Journey parser
gem 'racc', '>=1.4.6', require: false
# AR
2012-05-16 03:25:30 +00:00
gem 'sqlite3', '~> 1.3.6'
group :db do
gem 'pg', '>= 0.11.0'
gem 'mysql', '>= 2.9.0'
# TODO: Relax dependency version after of fix #11457
gem 'mysql2', '0.3.11'
end
end
platforms :jruby do
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 15:56:11 +00:00
# A gem necessary for ActiveRecord tests with IBM DB
gem 'ibm_db' if ENV['IBM_DB']