Skip to content
Snippets Groups Projects
Verified Commit 6502beb1 authored by Alexander Olofsson's avatar Alexander Olofsson
Browse files

Switch to shared pipeline, make a temp release

parent 05b8f94e
No related branches found
No related tags found
No related merge requests found
Pipeline #84813 failed
---
include:
- project: ITI/ci-pipelines
file: '/foreman-module.yaml'
--- ---
AllCops: AllCops:
TargetRubyVersion: 2.3 NewCops: enable
TargetRailsVersion: 5.1
Exclude:
- '*.spec'
- 'Rakefile'
Rails:
Enabled: true
# Don't enforce documentation
Style/Documentation: Style/Documentation:
Enabled: false Enabled: false
Metrics/MethodLength:
Max: 40
Metrics/LineLength:
Max: 190
Rails/SkipsModelValidations:
Enabled: false
Lint/BooleanSymbol:
Enabled: false
Style/MultilineBlockChain:
Enabled: false
Metrics/AbcSize:
Enabled: false
Metrics/CyclomaticComplexity:
Enabled: false
Metrics/PerceivedComplexity:
Enabled: false
Style/FormatStringToken:
Enabled: false
Naming/AccessorMethodName:
Enabled: false
Performance/FixedSize:
Exclude:
- 'test/**/*'
Metrics/BlockLength:
Max: 35
Exclude:
- 'test/**/*'
Metrics/ClassLength:
Max: 200
Exclude:
- 'test/**/*'
Lint/AmbiguousBlockAssociation:
Enabled: false
Style/ClassAndModuleChildren:
Exclude:
- 'test/**/*'
- 'app/controllers/concerns/foreman/**/*'
...@@ -17,7 +17,8 @@ Gem::Specification.new do |spec| ...@@ -17,7 +17,8 @@ Gem::Specification.new do |spec|
spec.add_runtime_dependency 'winrm', '~> 2.2' spec.add_runtime_dependency 'winrm', '~> 2.2'
spec.add_development_dependency 'bundler' spec.add_development_dependency 'rubocop'
spec.add_development_dependency 'minitest' spec.add_development_dependency 'rubocop-minitest'
spec.add_development_dependency 'rake' spec.add_development_dependency 'rubocop-performance'
spec.add_development_dependency 'rubocop-rails'
end end
# frozen_string_literal: true
module ForemanWds module ForemanWds
VERSION = '0.0.1'.freeze VERSION = '0.0.2'
end end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment