This repository has been archived by the owner on Apr 14, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 76
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 #248 from blocknotes/master
Upgrade the extension using solidus_dev_support
- Loading branch information
Showing
33 changed files
with
717 additions
and
375 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,5 @@ | ||
bump: | ||
recurse: false | ||
file: 'lib/solidus_paypal_braintree/version.rb' | ||
message: Bump SolidusPaypalBraintree to %{version} | ||
tag: true |
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,17 @@ | ||
# Number of days of inactivity before an issue becomes stale | ||
daysUntilStale: 60 | ||
# Number of days of inactivity before a stale issue is closed | ||
daysUntilClose: 7 | ||
# Issues with these labels will never be considered stale | ||
exemptLabels: | ||
- pinned | ||
- security | ||
# Label to use when marking an issue as stale | ||
staleLabel: wontfix | ||
# Comment to post when marking an issue as stale. Set to `false` to disable | ||
markComment: > | ||
This issue has been automatically marked as stale because it has not had | ||
recent activity. It will be closed if no further activity occurs. Thank you | ||
for your contributions. | ||
# Comment to post when closing a stale issue. Set to `false` to disable | ||
closeComment: false |
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 +1,2 @@ | ||
--color | ||
--color | ||
--require spec_helper |
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,249 +1,4 @@ | ||
# Relaxed.Ruby.Style | ||
require: | ||
- solidus_dev_support/rubocop | ||
|
||
AllCops: | ||
Exclude: | ||
- 'solidus_paypal_braintree.gemspec' | ||
- 'spec/dummy/**/*' | ||
- 'vendor/bundle/**/*' | ||
TargetRubyVersion: 2.1 | ||
|
||
# Sometimes I believe this reads better | ||
# This also causes spacing issues on multi-line fixes | ||
Style/BracesAroundHashParameters: | ||
Enabled: false | ||
|
||
# We use class vars and will have to continue doing so for compatability | ||
Style/ClassVars: | ||
Enabled: false | ||
|
||
# We need these names for backwards compatability | ||
Naming/PredicateName: | ||
Enabled: false | ||
|
||
Naming/AccessorMethodName: | ||
Enabled: false | ||
|
||
# This has been used for customization | ||
Style/MutableConstant: | ||
Enabled: false | ||
|
||
Style/ClassAndModuleChildren: | ||
Enabled: false | ||
|
||
Style/GuardClause: | ||
Enabled: false | ||
|
||
Style/WordArray: | ||
Enabled: false | ||
|
||
Style/ConditionalAssignment: | ||
Enabled: false | ||
|
||
Performance/Count: | ||
Enabled: false | ||
|
||
Style/RaiseArgs: | ||
Enabled: false | ||
|
||
Naming/BinaryOperatorParameterName: | ||
Enabled: false | ||
|
||
# We can use good judgement here | ||
Style/RegexpLiteral: | ||
Enabled: false | ||
|
||
# Unicode comments are useful | ||
Style/AsciiComments: | ||
Enabled: false | ||
|
||
Layout/EndAlignment: | ||
Enabled: false | ||
|
||
Layout/ElseAlignment: | ||
Enabled: false | ||
|
||
Layout/IndentationWidth: | ||
Enabled: false | ||
|
||
Layout/AlignParameters: | ||
Enabled: false | ||
|
||
Layout/ClosingParenthesisIndentation: | ||
Enabled: false | ||
|
||
Layout/MultilineMethodCallIndentation: | ||
Enabled: false | ||
|
||
Layout/IndentArray: | ||
Enabled: false | ||
|
||
Layout/IndentHash: | ||
Enabled: false | ||
|
||
Layout/AlignHash: | ||
Enabled: false | ||
|
||
# From http://relaxed.ruby.style/ | ||
|
||
Style/Alias: | ||
Enabled: false | ||
StyleGuide: http://relaxed.ruby.style/#stylealias | ||
|
||
Style/BeginBlock: | ||
Enabled: false | ||
StyleGuide: http://relaxed.ruby.style/#stylebeginblock | ||
|
||
Style/BlockDelimiters: | ||
Enabled: false | ||
StyleGuide: http://relaxed.ruby.style/#styleblockdelimiters | ||
|
||
Style/Documentation: | ||
Enabled: false | ||
StyleGuide: http://relaxed.ruby.style/#styledocumentation | ||
|
||
Layout/DotPosition: | ||
Enabled: false | ||
StyleGuide: http://relaxed.ruby.style/#styledotposition | ||
|
||
Style/DoubleNegation: | ||
Enabled: false | ||
StyleGuide: http://relaxed.ruby.style/#styledoublenegation | ||
|
||
Style/EndBlock: | ||
Enabled: false | ||
StyleGuide: http://relaxed.ruby.style/#styleendblock | ||
|
||
Style/FormatString: | ||
Enabled: false | ||
StyleGuide: http://relaxed.ruby.style/#styleformatstring | ||
|
||
Style/IfUnlessModifier: | ||
Enabled: false | ||
StyleGuide: http://relaxed.ruby.style/#styleifunlessmodifier | ||
|
||
Style/Lambda: | ||
Enabled: false | ||
StyleGuide: http://relaxed.ruby.style/#stylelambda | ||
|
||
Style/ModuleFunction: | ||
Enabled: false | ||
StyleGuide: http://relaxed.ruby.style/#stylemodulefunction | ||
|
||
Style/MultilineBlockChain: | ||
Enabled: false | ||
StyleGuide: http://relaxed.ruby.style/#stylemultilineblockchain | ||
|
||
Style/NegatedIf: | ||
Enabled: false | ||
StyleGuide: http://relaxed.ruby.style/#stylenegatedif | ||
|
||
Style/NegatedWhile: | ||
Enabled: false | ||
StyleGuide: http://relaxed.ruby.style/#stylenegatedwhile | ||
|
||
Style/ParallelAssignment: | ||
Enabled: false | ||
StyleGuide: http://relaxed.ruby.style/#styleparallelassignment | ||
|
||
Style/PercentLiteralDelimiters: | ||
Enabled: false | ||
StyleGuide: http://relaxed.ruby.style/#stylepercentliteraldelimiters | ||
|
||
Style/PerlBackrefs: | ||
Enabled: false | ||
StyleGuide: http://relaxed.ruby.style/#styleperlbackrefs | ||
|
||
Style/Semicolon: | ||
Enabled: false | ||
StyleGuide: http://relaxed.ruby.style/#stylesemicolon | ||
|
||
Style/SignalException: | ||
Enabled: false | ||
StyleGuide: http://relaxed.ruby.style/#stylesignalexception | ||
|
||
Style/SingleLineBlockParams: | ||
Enabled: false | ||
StyleGuide: http://relaxed.ruby.style/#stylesinglelineblockparams | ||
|
||
Style/SingleLineMethods: | ||
Enabled: false | ||
StyleGuide: http://relaxed.ruby.style/#stylesinglelinemethods | ||
|
||
Layout/SpaceBeforeBlockBraces: | ||
Enabled: false | ||
StyleGuide: http://relaxed.ruby.style/#stylespacebeforeblockbraces | ||
|
||
Layout/SpaceInsideParens: | ||
Enabled: false | ||
StyleGuide: http://relaxed.ruby.style/#stylespaceinsideparens | ||
|
||
Style/SpecialGlobalVars: | ||
Enabled: false | ||
StyleGuide: http://relaxed.ruby.style/#stylespecialglobalvars | ||
|
||
Style/StringLiterals: | ||
Enabled: false | ||
StyleGuide: http://relaxed.ruby.style/#stylestringliterals | ||
|
||
Style/SymbolArray: | ||
Enabled: false | ||
|
||
Style/SymbolProc: | ||
Enabled: false | ||
|
||
Style/WhileUntilModifier: | ||
Enabled: false | ||
StyleGuide: http://relaxed.ruby.style/#stylewhileuntilmodifier | ||
|
||
Lint/AmbiguousRegexpLiteral: | ||
Enabled: false | ||
StyleGuide: http://relaxed.ruby.style/#lintambiguousregexpliteral | ||
|
||
Lint/AssignmentInCondition: | ||
Enabled: false | ||
StyleGuide: http://relaxed.ruby.style/#lintassignmentincondition | ||
|
||
Lint/HandleExceptions: | ||
Exclude: | ||
- 'Rakefile' | ||
|
||
Metrics/AbcSize: | ||
Enabled: false | ||
|
||
Metrics/BlockNesting: | ||
Enabled: false | ||
|
||
Metrics/BlockLength: | ||
Exclude: | ||
- 'spec/**/*.rb' | ||
|
||
Metrics/ClassLength: | ||
Enabled: false | ||
|
||
Metrics/ModuleLength: | ||
Enabled: false | ||
|
||
Metrics/CyclomaticComplexity: | ||
Enabled: false | ||
|
||
Metrics/LineLength: | ||
Enabled: false | ||
|
||
Metrics/MethodLength: | ||
Enabled: false | ||
|
||
Metrics/ParameterLists: | ||
Enabled: false | ||
|
||
Metrics/PerceivedComplexity: | ||
Enabled: false | ||
|
||
Bundler/OrderedGems: | ||
Enabled: false | ||
|
||
Bundler/DuplicatedGem: | ||
Enabled: false | ||
|
||
AmbiguousBlockAssociation: | ||
Exclude: | ||
- "spec/**/*.rb" | ||
inherit_from: .rubocop_todo.yml |
Oops, something went wrong.