-
Notifications
You must be signed in to change notification settings - Fork 3
Update application dependencies #66
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
require: rubocop-rspec | ||
require: | ||
- rubocop-rails | ||
- rubocop-rspec |
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.
Rails cops were removed from RuboCop in version 0.72.
@@ -15,17 +17,14 @@ AllCops: | |||
- '.git/**/*' | |||
|
|||
IndentationConsistency: | |||
EnforcedStyle: 'rails' | |||
EnforcedStyle: 'indented_internal_methods' |
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.
Another change in RuboCop version 0.72.
html { 'MyText' } | ||
base_url { 'MyText' } | ||
save_html { false } | ||
render_html_in_page { false } |
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.
Newer versions of RuboCop use this syntax.
@jgarber623 I no longer maintain these repos. Could ask @aaronpk et al to review your PRs and/or give you commit bit, please? I would hate to have you waiting around on me and me not showing up for you. |
@veganstraightedge No worries, bud! Thanks for the head's up. I've tagged @aaronpk for a review. |
It's been four years, so… closing. |
Note: Opening this draft PR against thefix-apps-and-spec-errors
branch (PR #65). Will update and/or create a new PR againstmaster
when that PR is merged.This pull request updates the application's dependencies in a semi-conservative fashion. All non-pending specs pass and RuboCop reports only a single offense (in
spec/views/submissions/show.html.erb_spec.rb
) that may be addressed later.Closes #59
Closes #60
Closes #61
Closes #62
Closes #63
Closes #64