forked from rom-rb/rom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
53 lines (43 loc) · 1.14 KB
/
Gemfile
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
source 'https://rubygems.org'
gemspec
group :console do
gem 'pry'
gem 'pg', platforms: [:mri]
end
group :test do
gem 'dry-equalizer'
gem 'dry-struct'
gem 'minitest'
gem 'inflecto', '~> 0.0', '>= 0.0.2'
platforms :mri do
gem 'codeclimate-test-reporter', require: false
gem 'simplecov', require: false
end
platforms :rbx do
gem 'rubysl-bigdecimal'
end
end
group :sql do
gem 'rom-sql', git: 'https://github.com/rom-rb/rom-sql.git', branch: 'master'
gem 'sequel'
gem 'jdbc-sqlite3', platforms: :jruby
gem 'jdbc-postgres', platforms: :jruby
gem 'sqlite3', platforms: [:mri, :rbx]
git_source(:github) { |repo_name| "https://github.com/#{repo_name}.git" }
platform :jruby do
github 'jruby/activerecord-jdbc-adapter', branch: 'rails-5' do
gem 'activerecord-jdbc-adapter'
gem 'activerecord-jdbcpostgresql-adapter'
end
end
end
group :benchmarks do
gem 'activerecord', '~> 5.0'
gem 'benchmark-ips', '~> 2.2.0'
gem 'rom-repository', git: 'https://github.com/rom-rb/rom-repository.git', branch: 'master'
end
group :tools do
gem 'byebug', platform: :mri
gem 'mutant'
gem 'mutant-rspec'
end