-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ruby up * rubocop * raven out * je * fixes * auth fixes * amqp * test * test * test * config * email fix * emailfix * vmsize * fixes * removed branch references for travis bundled gems * use plateform x86_64-linux in Gemfile.lock * added travis-rollout gem after mistakenly removed
- Loading branch information
1 parent
5ed4de5
commit 71842b2
Showing
145 changed files
with
2,885 additions
and
2,434 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,81 @@ | ||
require: rubocop-performance | ||
require: rubocop-rspec | ||
|
||
Documentation: | ||
Enabled: false | ||
Metrics/ClassLength: | ||
Enabled: false | ||
Style/ClassAndModuleChildren: | ||
Enabled: false | ||
Metrics/LineLength: | ||
Enabled: false | ||
Metrics/MethodLength: | ||
Max: 40 | ||
Metrics/CyclomaticComplexity: | ||
Max: 20 | ||
Metrics/PerceivedComplexity: | ||
Max: 16 | ||
Style/AsciiComments: | ||
Enabled: false | ||
Metrics/AbcSize: | ||
Enabled: false | ||
Style/GuardClause: | ||
Enabled: false | ||
Style/FormatStringToken: | ||
Enabled: false | ||
Lint/AssignmentInCondition: | ||
Enabled: false | ||
Style/IfUnlessModifier: | ||
Enabled: false | ||
Naming/MemoizedInstanceVariableName: | ||
EnforcedStyleForLeadingUnderscores: required | ||
Style/MultilineBlockChain: | ||
Enabled: false | ||
Lint/ConstantDefinitionInBlock: | ||
Enabled: false | ||
Naming/VariableNumber: | ||
Enabled: false | ||
Metrics/BlockLength: | ||
Enabled: false | ||
Lint/ImplicitStringConcatenation: | ||
Enabled: false | ||
Metrics/MethodLength: | ||
Enabled: false | ||
Style/StructInheritance: | ||
Enabled: false | ||
Lint/RescueException: | ||
Enabled: false | ||
Lint/SuppressedException: | ||
Enabled: false | ||
Naming/MemoizedInstanceVariableName: | ||
Enabled: false | ||
Style/SymbolProc: | ||
Enabled: false | ||
RSpec/MultipleMemoizedHelpers: | ||
Enabled: false | ||
RSpec/NamedSubject: | ||
Enabled: false | ||
RSpec/AnyInstance: | ||
Enabled: false | ||
RSpec/ContextWording: | ||
Enabled: false | ||
RSpec/ExampleLength: | ||
Enabled: false | ||
RSpec/MultipleExpectations: | ||
Enabled: false | ||
RSpec/FilePath: | ||
Enabled: false | ||
Naming/MethodParameterName: | ||
Enabled: false | ||
Style/FormatString: | ||
Enabled: false | ||
Style/ModuleFunction: | ||
Enabled: false | ||
RSpec/NestedGroups: | ||
Enabled: false | ||
RSpec/LetSetup: | ||
Enabled: false | ||
RSpec/InstanceVariable: | ||
Enabled: false | ||
RSpec/MissingExampleGroupArgument: | ||
Enabled: 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.4.10 | ||
3.2.2 |
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ language: ruby | |
import: | ||
- travis-ci/build-configs:[email protected] | ||
|
||
rvm: 2.4.10 | ||
rvm: 3.2.2 | ||
|
||
cache: bundler | ||
|
||
|
@@ -24,7 +24,7 @@ services: | |
|
||
before_install: | ||
- bundle config https://gems.contribsys.com/ $BUNDLE_GEMS__CONTRIBSYS__COM | ||
- gem install bundler -v 2.3.26 | ||
- gem install bundler -v 2.4.14 | ||
|
||
jobs: | ||
include: | ||
|
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,11 +1,11 @@ | ||
FROM ruby:2.4.10-slim | ||
FROM ruby:3.2.2-slim | ||
|
||
LABEL maintainer Travis CI GmbH <[email protected]> | ||
|
||
# packages required for bundle install | ||
RUN ( \ | ||
apt-get update ; \ | ||
apt-get install -y --no-install-recommends git make gcc g++ libpq-dev curl \ | ||
apt-get install -y --no-install-recommends git make gcc g++ libpq-dev curl libjemalloc-dev\ | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
) | ||
|
||
|
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.