mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
743b905c81
Fixes #1775 (Drop support for Rubinius) I am amazed how many hacks we've had just to support Rubinius. It feels good to be able to remove them and reduce the complexity of the codebase.
24 lines
467 B
Ruby
24 lines
467 B
Ruby
source 'https://rubygems.org'
|
|
gemspec
|
|
gem 'rake', '~> 10.0'
|
|
|
|
# For Guard
|
|
group :development do
|
|
gem 'gist'
|
|
gem 'yard'
|
|
gem 'rb-inotify', :require => false
|
|
gem 'rb-fsevent', :require => false
|
|
|
|
# Rubocop supports only >=2.2.0
|
|
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.2.0')
|
|
gem 'rubocop', '= 0.59.2', :require => false
|
|
end
|
|
end
|
|
|
|
group :test do
|
|
gem 'rspec', '~> 3.7.0'
|
|
end
|
|
|
|
group :development, :test do
|
|
gem 'simplecov', '~> 0.8.0'
|
|
end
|