mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
9ffa460548
Rubocop is a really nice tool when configured properly. A lot of default rules are very opinionated but the good thing is that it's very easy to disable them. With help of Rubocop I'd like to improve the quality of Pry's code.
30 lines
561 B
Ruby
30 lines
561 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
|
|
|
|
platform :rbx do
|
|
gem 'rubysl-singleton'
|
|
gem 'rubysl-prettyprint'
|
|
gem 'rb-readline'
|
|
end
|