Gemfile 1.8 KB
Newer Older
1
source 'https://rubygems.org'
2

3 4
gemspec

5 6 7 8 9
# 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

10
gem 'rack-cache', '~> 1.2'
11
gem 'bcrypt-ruby', '~> 3.1.0'
12
gem 'jquery-rails', '~> 2.2.0'
13
gem 'turbolinks'
14
gem 'coffee-rails', '~> 4.0.0'
15

J
José Valim 已提交
16 17
# This needs to be with require false to avoid
# it being automatically loaded by sprockets
18
gem 'uglifier', '>= 1.3.0', require: false
19

20
group :doc do
S
Santiago Pastorino 已提交
21
  gem 'sdoc'
V
Vinny Diehl 已提交
22
  gem 'redcarpet', '~> 2.2.2', platforms: :ruby
23
  gem 'w3c_validators'
24
  gem 'kindlerb'
25
end
26

27
# AS
28
gem 'dalli', '>= 2.2.1'
29

30
# Add your own local bundler stuff
B
Bogdan Gusiev 已提交
31 32
local_gemfile = File.dirname(__FILE__) + "/.Gemfile"
instance_eval File.read local_gemfile if File.exists? local_gemfile
33

34 35 36 37 38 39
group :test do
  platforms :mri_19 do
    gem 'ruby-prof', '~> 0.11.2'
  end

  platforms :mri_19, :mri_20 do
40
    gem 'debugger'
41
  end
42 43

  gem 'benchmark-ips'
44 45
end

46
platforms :ruby do
47 48
  gem 'yajl-ruby'
  gem 'nokogiri', '>= 1.4.5'
A
Arun Agrawal 已提交
49

50 51 52
  # Needed for compiling the ActionDispatch::Journey parser
  gem 'racc', '>=1.4.6', require: false

53
  # AR
O
Oscar Del Ben 已提交
54
  gem 'sqlite3', '~> 1.3.6'
55 56

  group :db do
57
    gem 'pg', '>= 0.11.0'
58
    gem 'mysql', '>= 2.9.0'
J
Josef Šimánek 已提交
59
    gem 'mysql2', '>= 0.3.13'
60
  end
61 62 63
end

platforms :jruby do
64 65 66 67 68
  git 'git://github.com/jruby/activerecord-jdbc-adapter.git' do
    gem 'activerecord-jdbcsqlite3-adapter'
    group :db do
      gem 'activerecord-jdbcmysql-adapter'
      gem 'activerecord-jdbcpostgresql-adapter'
69
    end
70
  end
71
end
72 73

# gems that are necessary for ActiveRecord tests with Oracle database
74
if ENV['ORACLE_ENHANCED']
75
  platforms :ruby do
76
    gem 'ruby-oci8', '>= 2.0.4'
77
  end
78
  gem 'activerecord-oracle_enhanced-adapter', github: 'rsim/oracle-enhanced', branch: 'master'
79
end
80

Y
Yasuo Honda 已提交
81
# A gem necessary for ActiveRecord tests with IBM DB
82
gem 'ibm_db' if ENV['IBM_DB']