-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #71 from 3ofcoins/feature/update-deps-04-2018
Spring cleaning
- Loading branch information
Showing
29 changed files
with
326 additions
and
209 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Rubocop thinks we're using Kernel#open, while we're using OpenURI#open's implementation | ||
Security/Open: | ||
Enabled: false | ||
|
||
Style/RegexpLiteral: | ||
AllowInnerSlashes: true | ||
|
||
Style/StringLiterals: | ||
Enabled: false | ||
|
||
Style/GlobalVars: | ||
Enabled: false | ||
|
||
Documentation: | ||
Enabled: false | ||
|
||
Metrics/AbcSize: | ||
Max: 22 | ||
|
||
Metrics/ClassLength: | ||
Enabled: false | ||
|
||
Metrics/CyclomaticComplexity: | ||
Max: 9 | ||
|
||
Metrics/LineLength: | ||
Max: 120 | ||
|
||
Metrics/ModuleLength: | ||
Enabled: false | ||
|
||
Metrics/MethodLength: | ||
Max: 20 | ||
|
||
Metrics/PerceivedComplexity: | ||
Max: 10 | ||
|
||
Naming/FileName: | ||
Enabled: false | ||
|
||
# The two following cops have to be disabled due to false positives | ||
Performance/RedundantMatch: | ||
Enabled: false | ||
|
||
Performance/RegexpMatch: | ||
Enabled: false | ||
|
||
AllCops: | ||
TargetRubyVersion: 2.4.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
script: bundle exec cucumber && bundle exec cucumber -p validate | ||
script: bundle exec rubocop && bundle exec cucumber && bundle exec cucumber -p validate | ||
language: ruby | ||
rvm: | ||
- 2.2.0 | ||
- 2.2.1 | ||
- 2.3.0 | ||
- 2.3.1 | ||
- 2.4.0 | ||
- 2.4.3 | ||
- 2.5.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.