mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
12 lines
283 B
Ruby
12 lines
283 B
Ruby
source 'https://rubygems.org'
|
|
gemspec
|
|
|
|
gem 'rake', '~> 10.0'
|
|
gem 'yard'
|
|
gem 'rspec', '~> 3.8.0'
|
|
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
|