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:
Ethan Vizitei 2016-01-14 16:06:02 -07:00 committed by Ethan Vizitei
parent 75b1a5dec5
commit 56381d06b4
2 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ Style/IndentHash:
Enabled: false
Style/DoubleNegation:
Enabled: false
Style/TrailingComma:
Style/TrailingCommaInLiteral:
Enabled: false
Style/MethodCallParentheses:
Enabled: false

View File

@ -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"