Remove internal dependency

This commit is contained in:
Eugen Wissner 2021-01-02 07:46:33 +01:00
parent 839d42faf4
commit 9a6ecd15f5
3 changed files with 36 additions and 25 deletions

View File

@ -2,22 +2,35 @@ AllCops:
Exclude: Exclude:
- 'vendor/**/*' - 'vendor/**/*'
- '.git/**/*' - '.git/**/*'
- 'node_modules/**/*'
- 'bin/bundle'
- 'bin/cap*'
- 'bin/rails'
- 'bin/rake'
- 'bin/rspec'
- 'bin/rubocop' - 'bin/rubocop'
- 'slackbuilds/**/*' - 'bin/setup'
- 'bin/spring'
- 'bin/update'
- 'bin/webpack*'
- '**/db/*schema.rb'
- 'pkg/**/*'
TargetRubyVersion: '2.7'
Style/Documentation: Style/Documentation:
Enabled: false Enabled: false
Style/TrailingCommaInHashLiteral: # False-Positive: non-string-variable + 'some string'
EnforcedStyleForMultiline: consistent_comma Style/StringConcatenation:
Enabled: false
Style/FrozenStringLiteralComment:
Exclude:
- '**/db/migrate/*'
Layout/MultilineMethodCallIndentation: Layout/MultilineMethodCallIndentation:
EnforcedStyle: indented EnforcedStyle: indented
Layout/MultilineOperationIndentation:
EnforcedStyle: indented
Layout/ArgumentAlignment: Layout/ArgumentAlignment:
EnforcedStyle: with_fixed_indentation EnforcedStyle: with_fixed_indentation
@ -25,6 +38,6 @@ Layout/EndAlignment:
EnforcedStyleAlignWith: variable EnforcedStyleAlignWith: variable
Metrics/BlockLength: Metrics/BlockLength:
ExcludedMethods: IgnoredMethods:
- describe - describe
- refine - refine

View File

@ -4,6 +4,8 @@
# frozen_string_literal: true # frozen_string_literal: true
source 'https://rubygems.caraus.de' source "https://rubygems.org"
gem 'infra', '~> 2.0.0' git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
gem 'rubocop', '~> 1.7', require: false

View File

@ -1,36 +1,32 @@
GEM GEM
remote: https://rubygems.caraus.de/ remote: https://rubygems.org/
specs: specs:
ast (2.4.1) ast (2.4.1)
infra (2.0.0)
rake (~> 13.0)
rubocop (~> 0.89)
parallel (1.20.1) parallel (1.20.1)
parser (2.7.2.0) parser (3.0.0.0)
ast (~> 2.4.1) ast (~> 2.4.1)
rainbow (3.0.0) rainbow (3.0.0)
rake (13.0.1) regexp_parser (2.0.3)
regexp_parser (2.0.0)
rexml (3.2.4) rexml (3.2.4)
rubocop (0.93.1) rubocop (1.7.0)
parallel (~> 1.10) parallel (~> 1.10)
parser (>= 2.7.1.5) parser (>= 2.7.1.5)
rainbow (>= 2.2.2, < 4.0) rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8) regexp_parser (>= 1.8, < 3.0)
rexml rexml
rubocop-ast (>= 0.6.0) rubocop-ast (>= 1.2.0, < 2.0)
ruby-progressbar (~> 1.7) ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 2.0) unicode-display_width (>= 1.4.0, < 2.0)
rubocop-ast (1.2.0) rubocop-ast (1.4.0)
parser (>= 2.7.1.5) parser (>= 2.7.1.5)
ruby-progressbar (1.10.1) ruby-progressbar (1.11.0)
unicode-display_width (1.7.0) unicode-display_width (1.7.0)
PLATFORMS PLATFORMS
ruby ruby
DEPENDENCIES DEPENDENCIES
infra (~> 2.0.0) rubocop (~> 1.7)
BUNDLED WITH BUNDLED WITH
2.1.4 2.1.4