-
Notifications
You must be signed in to change notification settings - Fork 472
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
Use an automated PR linter, danger.systems. #486
Conversation
@@ -15,3 +15,5 @@ if RUBY_VERSION < '2.2.2' | |||
gem 'rack', '<2.0.0' | |||
gem 'activesupport', '<5.0.0' | |||
end | |||
|
|||
gem 'danger', '~> 2.0' |
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.
Maybe adding required: false
, so not to introduce unwanted dependency?
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.
Good idea!
534cc19
to
17e9bfb
Compare
Looks like danger use redcarpet only for markdown parsing, this not possible with jruby, should be: unless RUBY_PLATFORM == 'java'
gem 'danger', '~> 2.0', require: false
end |
I opened danger/danger#394 for Danger + JRuby, thanks @Bugagazavr. |
corrects URLs of ruby-grape#419 and ruby-grape#486
I'll iterate on this...