Skip to content

Commit

Permalink
Merge pull request #338 from coopdevs/develop
Browse files Browse the repository at this point in the history
Release v1.4.0
  • Loading branch information
sauloperez authored Mar 19, 2018
2 parents 2ab220c + 881b531 commit 6f091fd
Show file tree
Hide file tree
Showing 36 changed files with 401 additions and 1,142 deletions.
3 changes: 0 additions & 3 deletions .hound.yml

This file was deleted.

172 changes: 79 additions & 93 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,258 +2,244 @@ AllCops:
Exclude:
- db/schema.rb

AccessorMethodName:
Naming/AccessorMethodName:
Enabled: false

ActionFilter:
Rails/ActionFilter:
Enabled: false

Alias:
Style/Alias:
Enabled: false

ArrayJoin:
Style/ArrayJoin:
Enabled: false

AsciiComments:
Style/AsciiComments:
Enabled: false

AsciiIdentifiers:
Naming/AsciiIdentifiers:
Enabled: false

Attr:
Style/Attr:
Enabled: false

BlockNesting:
Metrics/BlockNesting:
Enabled: false

CaseEquality:
Style/CaseEquality:
Enabled: false

CharacterLiteral:
Style/CharacterLiteral:
Enabled: false

ClassAndModuleChildren:
Style/ClassAndModuleChildren:
Enabled: false

ClassLength:
Metrics/ClassLength:
Enabled: false

ClassVars:
Style/ClassVars:
Enabled: false

CollectionMethods:
Style/CollectionMethods:
PreferredMethods:
find: detect
reduce: inject
collect: map
find_all: select

ColonMethodCall:
Style/ColonMethodCall:
Enabled: false

CommentAnnotation:
Style/CommentAnnotation:
Enabled: false

CyclomaticComplexity:
Metrics/CyclomaticComplexity:
Enabled: false

Delegate:
Rails/Delegate:
Enabled: false

DeprecatedHashMethods:
Style/Documentation:
Enabled: false

Documentation:
Enabled: false

DotPosition:
Layout/DotPosition:
EnforcedStyle: trailing

DoubleNegation:
Style/DoubleNegation:
Enabled: false

EachWithObject:
Style/EachWithObject:
Enabled: false

EmptyLiteral:
Style/EmptyLiteral:
Enabled: false

Encoding:
Style/Encoding:
Enabled: false

EvenOdd:
Style/EvenOdd:
Enabled: false

FileName:
Naming/FileName:
Enabled: false

FlipFlop:
Style/FlipFlop:
Enabled: false

FormatString:
Style/FormatString:
Enabled: false

GlobalVars:
Style/GlobalVars:
Enabled: false

GuardClause:
Style/GuardClause:
Enabled: false

IfUnlessModifier:
Style/IfUnlessModifier:
Enabled: false

IfWithSemicolon:
Style/IfWithSemicolon:
Enabled: false

InlineComment:
Style/InlineComment:
Enabled: false

Lambda:
Style/Lambda:
Enabled: false

LambdaCall:
Style/LambdaCall:
Enabled: false

LineEndConcatenation:
Style/LineEndConcatenation:
Enabled: false

LineLength:
Metrics/LineLength:
Max: 80

MethodLength:
Metrics/MethodLength:
Enabled: false

ModuleFunction:
Style/ModuleFunction:
Enabled: false

NegatedIf:
Style/NegatedIf:
Enabled: false

NegatedWhile:
Style/NegatedWhile:
Enabled: false

Next:
Style/Next:
Enabled: false

NilComparison:
Style/NilComparison:
Enabled: false

Not:
Style/Not:
Enabled: false

NumericLiterals:
Style/NumericLiterals:
Enabled: false

OneLineConditional:
Style/OneLineConditional:
Enabled: false

OpMethod:
Metrics/ParameterLists:
Enabled: false

ParameterLists:
Style/PercentLiteralDelimiters:
Enabled: false

PercentLiteralDelimiters:
Style/PerlBackrefs:
Enabled: false

PerlBackrefs:
Enabled: false

PredicateName:
Naming/PredicateName:
NamePrefixBlacklist:
- is_

Proc:
Style/Proc:
Enabled: false

RaiseArgs:
Style/RaiseArgs:
Enabled: false

RegexpLiteral:
Style/RegexpLiteral:
Enabled: false

SelfAssignment:
Style/SelfAssignment:
Enabled: false

SingleLineBlockParams:
Style/SingleLineBlockParams:
Enabled: false

SingleLineMethods:
Style/SingleLineMethods:
Enabled: false

SignalException:
Style/SignalException:
Enabled: false

SpecialGlobalVars:
Style/SpecialGlobalVars:
Enabled: false

StringLiterals:
Style/StringLiterals:
EnforcedStyle: single_quotes

VariableInterpolation:
Style/VariableInterpolation:
Enabled: false

TrailingComma:
Style/TrailingCommaInLiteral:
Enabled: false

TrivialAccessors:
Style/TrailingCommaInArguments:
Enabled: false

VariableInterpolation:
Style/TrivialAccessors:
Enabled: false

WhenThen:
Style/VariableInterpolation:
Enabled: false

WhileUntilModifier:
Enabled: false

WordArray:
Enabled: false

# Lint

AmbiguousOperator:
Style/WhenThen:
Enabled: false

AmbiguousRegexpLiteral:
Style/WhileUntilModifier:
Enabled: false

AssignmentInCondition:
Lint/AmbiguousOperator:
Enabled: false

ConditionPosition:
Lint/AmbiguousRegexpLiteral:
Enabled: false

DeprecatedClassMethods:
Lint/AssignmentInCondition:
Enabled: false

ElseLayout:
Lint/ConditionPosition:
Enabled: false

HandleExceptions:
Lint/DeprecatedClassMethods:
Enabled: false

InvalidCharacterLiteral:
Lint/ElseLayout:
Enabled: false

LiteralInCondition:
Lint/HandleExceptions:
Enabled: false

LiteralInInterpolation:
Lint/LiteralInInterpolation:
Enabled: false

Loop:
Lint/Loop:
Enabled: false

ParenthesesAsGroupedExpression:
Lint/ParenthesesAsGroupedExpression:
Enabled: false

RequireParentheses:
Lint/RequireParentheses:
Enabled: false

UnderscorePrefixedVariableName:
Lint/UnderscorePrefixedVariableName:
Enabled: false

Void:
Lint/Void:
Enabled: false
2 changes: 1 addition & 1 deletion Capfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ require 'capistrano/deploy'
require 'capistrano/rails'

stage = ARGV.first
if stage == :staging # Sorry, production is not ready yet
if stage == 'staging' # Sorry, production is not ready yet
require 'capistrano/rbenv'
end

Expand Down
Loading

0 comments on commit 6f091fd

Please sign in to comment.