1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00
pry--pry/Gemfile

20 lines
445 B
Text
Raw Normal View History

# frozen_string_literal: true
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
2020-03-07 10:32:06 -05:00
gem 'rake'
gem 'yard'
gem 'rspec', '~> 3.8.0'
# TODO: unlock version when the bug is fixed:
# https://github.com/rspec/rspec-expectations/issues/1113
gem 'rspec-expectations', '= 3.8.2'
gem 'simplecov', '~> 0.16', require: false
# Rubocop supports only >=2.2.0
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.2.0')
gem 'rubocop', '= 0.66.0', require: false
end