forked from rpush/rpush
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
35 lines (30 loc) · 650 Bytes
/
Gemfile
File metadata and controls
35 lines (30 loc) · 650 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
source 'https://rubygems.org'
gem 'rake'
gem 'rspec', '= 2.14.1'
gem 'rails', '~> 3.2'
gem 'database_cleaner'
gem 'timecop'
gem 'redis'
gem 'modis'
platform :mri do
gem 'cane'
gem 'coveralls', require: false
gem 'simplecov', require: false
gem 'rubocop', require: false
end
platform :ruby do
gem 'pg'
gem 'mysql2'
gem 'yajl-ruby'
gem 'sqlite3'
end
platform :jruby do
gem 'activerecord-jdbc-adapter', '>= 1.2.6'
gem 'activerecord-jdbcpostgresql-adapter'
gem 'activerecord-jdbcmysql-adapter'
gem 'activerecord-jdbcsqlite3-adapter'
gem 'activerecord-jdbch2-adapter'
gem 'jdbc-postgres'
gem 'jruby-openssl'
end
gemspec