-
Notifications
You must be signed in to change notification settings - Fork 477
Use an automated PR linter, danger.systems. #486
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
Conversation
Gemfile
Outdated
| 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
corrects URLs of ruby-grape#419 and ruby-grape#486
I'll iterate on this...