rails--rails/Gemfile

101 lines
2.3 KiB
Ruby
Raw Normal View History

source 'https://rubygems.org'
2010-02-01 00:33:06 +00:00
gemspec
if ENV['AREL']
gem 'arel', path: ENV['AREL']
else
2011-12-14 21:26:41 +00:00
gem 'arel'
end
gem 'rack-test', github: "brynary/rack-test"
gem 'bcrypt-ruby', '~> 3.0.0'
gem 'jquery-rails'
2011-09-08 17:51:23 +00:00
if ENV['JOURNEY']
gem 'journey', path: ENV['JOURNEY']
2011-09-08 17:51:23 +00:00
else
gem 'journey', github: "rails/journey"
2011-09-08 17:51:23 +00:00
end
if ENV['AR_DEPRECATED_FINDERS']
gem 'active_record_deprecated_finders', path: ENV['AR_DEPRECATED_FINDERS']
else
gem 'active_record_deprecated_finders', github: 'rails/active_record_deprecated_finders'
end
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.0.3', require: false
2011-03-29 20:42:57 +00:00
gem 'rake', '>= 0.8.7'
2012-04-24 10:35:08 +00:00
gem 'mocha', '>= 0.11.2'
group :doc do
# The current sdoc cannot generate GitHub links due
# to a bug, but the PR that fixes it has been there
# for some weeks unapplied. As a temporary solution
# this is our own fork with the fix.
gem 'sdoc', github: 'fxn/sdoc'
gem 'RedCloth', '~> 4.2'
gem 'w3c_validators'
end
# AS
gem 'memcache-client', '>= 1.8.5'
# 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
platforms :mri do
group :test do
gem 'ruby-prof', '0.10.8'
end
end
platforms :ruby do
gem 'json'
gem 'yajl-ruby'
gem 'nokogiri', '>= 1.4.5'
2011-05-05 17:47:07 +00:00
# AR
gem 'sqlite3', '~> 1.3.5'
group :db do
gem 'pg', '>= 0.11.0'
gem 'mysql', '>= 2.8.1'
gem 'mysql2', '>= 0.3.10'
end
end
platforms :jruby do
gem 'json'
gem 'activerecord-jdbcsqlite3-adapter', '>= 1.2.0'
# This is needed by now to let tests work on JRuby
# TODO: When the JRuby guys merge jruby-openssl in
# jruby this will be removed
gem 'jruby-openssl'
group :db do
gem 'activerecord-jdbcmysql-adapter', '>= 1.2.0'
gem 'activerecord-jdbcpostgresql-adapter', '>= 1.2.0'
end
end
# gems that are necessary for ActiveRecord tests with Oracle database
if ENV['ORACLE_ENHANCED_PATH'] || ENV['ORACLE_ENHANCED']
platforms :ruby do
gem 'ruby-oci8', '>= 2.0.4'
end
if ENV['ORACLE_ENHANCED_PATH']
gem 'activerecord-oracle_enhanced-adapter', path: ENV['ORACLE_ENHANCED_PATH']
else
gem 'activerecord-oracle_enhanced-adapter', github: 'rsim/oracle-enhanced'
end
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']