forked from dry-rb/dry-validation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
33 lines (27 loc) · 756 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
source 'https://rubygems.org'
gemspec
gem 'dry-logic', git: 'https://github.com/dry-rb/dry-logic', branch: 'master'
group :test do
gem 'i18n', require: false
platform :mri do
gem 'codeclimate-test-reporter', require: false
gem 'simplecov', require: false
end
gem 'dry-monads', '>= 0.4.0', require: false
gem 'dry-struct', require: false
end
group :tools do
gem 'pry-byebug', platform: :mri
gem 'pry', platform: :jruby
unless ENV['TRAVIS']
gem 'mutant', git: 'https://github.com/mbj/mutant'
gem 'mutant-rspec', git: 'https://github.com/mbj/mutant'
end
end
group :benchmarks do
gem 'hotch', platform: :mri
gem 'activemodel', '~> 5.0.0.rc'
gem 'actionpack', '~> 5.0.0.rc'
gem 'benchmark-ips'
gem 'virtus'
end