Skip to content

Commit

Permalink
Fix CI builds (#286)
Browse files Browse the repository at this point in the history
* update test app gems and fix more deprecation errors
* replace minitest with rspec for consistency. cleanup Rakefile
  • Loading branch information
invalidusrname authored Jul 20, 2020
1 parent a8fefb0 commit ef7bec8
Show file tree
Hide file tree
Showing 50 changed files with 1,609 additions and 668 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,7 @@
/test_app/vendor
Gemfile.lock
gemfiles/*.lock
.DS_Store
*.swo
*.swp
.vscode/

24 changes: 24 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
AllCops:
Exclude:
- 'tests/test_app/db/**/*.rb'

inherit_from: .rubocop_todo.yml

require:
- rubocop-rspec
- rubocop-rails

Layout/SpaceAroundMethodCallOperator:
Enabled: true
Lint/RaiseException:
Enabled: True
Lint/StructNewOverride:
Enabled: True
Style/ExponentialNotation:
Enabled: True
Style/HashEachMethods:
Enabled: True
Style/HashTransformKeys:
Enabled: True
Style/HashTransformValues:
Enabled: True
Loading

0 comments on commit ef7bec8

Please sign in to comment.