spec: fix aux build
rubocop wasn't version pinned, so jenkins got a later version, and the aux build started failing because of a config difference. this fixes the config and pins the version of rubocop Change-Id: I5d94b779a8d29dac66ad0e121737816459c62ba3 Reviewed-on: https://gerrit.instructure.com/70337 Reviewed-by: Jon Jensen <jon@instructure.com> Product-Review: Ethan Vizitei <evizitei@instructure.com> QA-Review: Ethan Vizitei <evizitei@instructure.com> Tested-by: Ethan Vizitei <evizitei@instructure.com>
This commit is contained in:
parent
75b1a5dec5
commit
56381d06b4
|
@ -68,7 +68,7 @@ Style/IndentHash:
|
|||
Enabled: false
|
||||
Style/DoubleNegation:
|
||||
Enabled: false
|
||||
Style/TrailingComma:
|
||||
Style/TrailingCommaInLiteral:
|
||||
Enabled: false
|
||||
Style/MethodCallParentheses:
|
||||
Enabled: false
|
||||
|
|
|
@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
|
|||
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
||||
spec.require_paths = ["lib"]
|
||||
|
||||
spec.add_runtime_dependency "rubocop"
|
||||
spec.add_runtime_dependency "rubocop", "~> 0.36.0"
|
||||
spec.add_development_dependency "bundler", "~> 1.7"
|
||||
spec.add_development_dependency "rake", "~> 10.0"
|
||||
spec.add_development_dependency "rspec", "~> 3.2.0"
|
||||
|
|
Loading…
Reference in New Issue