Skip to content

Release v1.4.0 #338

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

Merged
merged 34 commits into from
Mar 19, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
a8d8acf
Updating dependencies
knoopx Oct 18, 2017
6772df1
update to nokogiri 1.8.1 (fixes security warnings)
markets Jan 26, 2018
75bd2b9
update to latest RSpec 3.7.2; rake is already part of railties
markets Jan 26, 2018
0502252
quiet_assets is not necessary with sprockets-rails > 3.1
markets Jan 26, 2018
8eca2ce
update sass-rails to 5.0.7 (closes #297)
markets Jan 26, 2018
9192610
Remove Thin app server dep. If I'm not wrong, this was a runtime dep …
markets Jan 26, 2018
faf646e
we do not need Bundler as a runtime dep, we added this in 13be10e whe…
markets Jan 26, 2018
e4392b6
:scissors: deprecated images
markets Jan 26, 2018
e4cda8b
little application_helper cleanup: remove deprecated helper (ref. htt…
markets Jan 26, 2018
def4d7b
Merge branch 'develop' into update-deps2
markets Feb 5, 2018
5f90105
Fix deploy staging
enricostano Feb 15, 2018
ff3af15
remove memcachier gem (closes #326, closes #204)
markets Feb 15, 2018
7909293
Merge pull request #328 from coopdevs/fix/deploy-staging
enricostano Feb 16, 2018
623fb28
update rubocop to latest release (0.28.0 => 0.52.1). This fixes a low…
markets Feb 20, 2018
f2d3779
custom error pages
markets Jan 28, 2018
00b0e3c
error pages: integrate i18n
markets Jan 29, 2018
badbaf7
Translate missed keys and add new ones
sseerrggii Jan 29, 2018
1478aac
Merge pull request #299 from coopdevs/error_pages
sauloperez Mar 2, 2018
cd1d54f
Merge pull request #301 from coopdevs/translation
sauloperez Mar 2, 2018
b5d68d4
Merge pull request #331 from coopdevs/error_pages
sauloperez Mar 4, 2018
75aa85d
upgrading Devise to latest release
markets Mar 7, 2018
a1f68f8
update better_errors (and binding_of_caller)
markets Mar 7, 2018
da98d84
update Kaminari to make it compatible with current ActiveAdmin version
markets Mar 7, 2018
74add4c
Remove unused file db/structure.sql.
markets Mar 7, 2018
f86de6b
update http_accept_language
markets Mar 7, 2018
fda4eba
turn to Prawn
markets Mar 7, 2018
8394923
Remove foreman gem and Procfile. I think we can safely remove this ge…
markets Mar 7, 2018
c866d33
remove deprecated file config/deploy/shelly/after_successful_deploy (…
markets Mar 7, 2018
acabc56
Merge branch 'develop' into update-deps2
markets Mar 7, 2018
2a94cf6
Remove high_voltage gem with an own implementation. Actually we only …
markets Mar 7, 2018
0e53f23
remove deprecated view partial
markets Mar 7, 2018
49410a0
Merge pull request #298 from coopdevs/update-deps2
sauloperez Mar 13, 2018
7f498c1
fix test db config
Morantron Mar 14, 2018
881b531
Merge pull request #332 from coopdevs/fix/test-db-config
enricostano Mar 14, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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