-
-
Notifications
You must be signed in to change notification settings - Fork 277
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove the requirement for a rubocop submodule #109
Conversation
Updated now that 0.41.1 is out. |
The problem with |
Updated again now that 0.41.2 has been released which allows RSpec cops to be enabled/disabled by comments. Also, fixed a test issue with ruby 1.9 now that json 2.0 depends on ruby 2.0 or later. |
Thanks @tjwp. Could you rebase onto master? I'd like to merge this |
@backus rebased |
Thanks @tjwp! |
@@ -6,6 +6,8 @@ gemspec | |||
|
|||
group :test do | |||
gem 'codeclimate-test-reporter', require: false | |||
# json 2.0 requires Ruby >= 2.0 | |||
gem 'json', '~> 1.8', require: false, platforms: :ruby_19 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should be able to remove this. I dropped 1.9.3 support.
@tjwp I left one comment. I'll merge once that is fixed |
The latest release of RuboCop (v0.41.1) exposes files to support testing with RSpec.
@backus done |
Thanks again @tjwp! |
Remove the requirement for a rubocop submodule
The latest RuboCop version (v0.41.1) exposes files to support testing with RSpec.