forked from rom-rb/rom-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
40 lines (33 loc) · 918 Bytes
/
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
source 'https://rubygems.org'
gemspec
gem 'inflecto'
group :development do
gem 'dry-equalizer', '~> 0.2'
gem 'sqlite3', platforms: [:mri, :rbx]
gem 'jdbc-sqlite3', platforms: :jruby
end
group :test do
gem 'rom', git: 'https://github.com/rom-rb/rom.git', branch: 'master'
gem 'rom-sql', git: 'https://github.com/rom-rb/rom-sql.git', branch: 'master'
gem 'rom-mapper', git: 'https://github.com/rom-rb/rom-mapper.git'
gem 'dry-core', git: 'https://github.com/dry-rb/dry-core.git'
gem 'rspec'
gem 'dry-struct'
gem 'byebug', platforms: :mri
gem 'pg', platforms: [:mri, :rbx]
gem 'jdbc-postgres', platforms: :jruby
platform :mri do
gem 'codeclimate-test-reporter', require: false
gem 'simplecov'
end
end
group :benchmarks do
gem 'hotch', platforms: :mri
gem 'benchmark-ips'
gem 'activerecord', '~> 5.0'
end
group :tools do
gem 'pry'
gem 'mutant'
gem 'mutant-rspec'
end