-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile.ci
36 lines (29 loc) · 994 Bytes
/
Gemfile.ci
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
36
source 'https://rubygems.org'
ruby '2.4.0'
# gems needed for running all files in lib
group :main do
gem 'msgpack', '~> 1.0', '>= 1.0.2'
gem 'pg', '~> 0.19.0'
# +standalone_migrations+ (5.0.0) depends on +rake+ (~> 10.0)
# gem 'rake', '~> 12.0'
gem 'rake', '~> 10.0'
gem 'standalone_migrations', '~> 5.0'
# +activerecord+ (5.1.0.alpha) depends on +arel+ (~> 8.0)
gem 'arel', git: 'https://github.com/rails/arel.git'
git 'https://github.com/rails/rails.git' do
# next version after 5.0.1 solves this problem: https://github.com/rails/rails/commit/cb0452e9a50e97f8ab2100f6226fbdd47a970a34
gem 'activerecord' # , '~> 5.0', '>= 5.0.1'
end
end
# gems needed for travis ci
group :ci do
gem 'codeclimate-test-reporter', '~> 1.0', '>= 1.0.4'
gem 'fuubar', '~> 2.2'
gem 'require_all', '~> 1.3', '>= 1.3.3'
gem 'rspec', '~> 3.5'
gem 'rspec-its', '~> 1.2'
gem 'rubocop', '~> 0.47.1'
gem 'rubocop-rspec', '~> 1.10'
gem 'simplecov', '~> 0.13.0'
end
gemspec