2013-02-26 08:27:51 -05:00
|
|
|
source 'https://rubygems.org'
|
2011-09-13 11:39:04 -04:00
|
|
|
gemspec
|
2013-11-23 21:11:29 -05:00
|
|
|
|
2019-03-07 17:46:50 -05:00
|
|
|
gem 'rake', '~> 10.0'
|
|
|
|
gem 'yard'
|
|
|
|
gem 'rspec', '~> 3.8.0'
|
2019-04-28 13:32:19 -04:00
|
|
|
|
|
|
|
# TODO: unlock version when the bug is fixed:
|
|
|
|
# https://github.com/rspec/rspec-expectations/issues/1113
|
|
|
|
gem 'rspec-expectations', '= 3.8.2'
|
|
|
|
|
2019-03-07 17:50:48 -05:00
|
|
|
gem 'simplecov', '~> 0.16', require: false
|
2014-03-14 20:47:58 -04:00
|
|
|
|
2019-03-07 17:46:50 -05:00
|
|
|
# Rubocop supports only >=2.2.0
|
|
|
|
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.2.0')
|
2019-03-20 18:51:57 -04:00
|
|
|
gem 'rubocop', '= 0.66.0', require: false
|
2014-03-14 20:47:58 -04:00
|
|
|
end
|