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

3 4
gemspec

5
gem 'mocha', '~> 0.14'
6
gem 'rack-cache', '~> 1.2'
7
gem 'bcrypt-ruby', '~> 3.0.0'
8
gem 'jquery-rails', '~> 2.2.0'
9
gem 'turbolinks'
10
gem 'coffee-rails', '~> 4.0.0'
11

J
José Valim 已提交
12 13
# This needs to be with require false to avoid
# it being automatically loaded by sprockets
14
gem 'uglifier', '>= 1.3.0', require: false
15

16
group :doc do
S
Santiago Pastorino 已提交
17
  gem 'sdoc'
V
Vinny Diehl 已提交
18
  gem 'redcarpet', '~> 2.2.2', platforms: :ruby
19
  gem 'w3c_validators'
20
  gem 'kindlerb'
21
end
22

23
# AS
24
gem 'dalli', '>= 2.2.1'
25

26
# Add your own local bundler stuff
B
Bogdan Gusiev 已提交
27 28
local_gemfile = File.dirname(__FILE__) + "/.Gemfile"
instance_eval File.read local_gemfile if File.exists? local_gemfile
29

30 31 32 33 34 35
group :test do
  platforms :mri_19 do
    gem 'ruby-prof', '~> 0.11.2'
  end

  platforms :mri_19, :mri_20 do
36
    gem 'debugger'
37
  end
38 39

  gem 'benchmark-ips'
40 41
end

42
platforms :ruby do
43 44
  gem 'yajl-ruby'
  gem 'nokogiri', '>= 1.4.5'
A
Arun Agrawal 已提交
45

46 47 48
  # Needed for compiling the ActionDispatch::Journey parser
  gem 'racc', '>=1.4.6', require: false

49
  # AR
O
Oscar Del Ben 已提交
50
  gem 'sqlite3', '~> 1.3.6'
51 52

  group :db do
53
    gem 'pg', '>= 0.11.0'
54
    gem 'mysql', '>= 2.9.0'
55
    gem 'mysql2', '>= 0.3.10'
56
  end
57 58 59
end

platforms :jruby do
60
  gem 'json'
61
  gem 'activerecord-jdbcsqlite3-adapter', '>= 1.2.7'
62

63
  group :db do
64 65
    gem 'activerecord-jdbcmysql-adapter', '>= 1.2.7'
    gem 'activerecord-jdbcpostgresql-adapter', '>= 1.2.7'
66
  end
67
end
68 69

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

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