Correcting .gitreview repo path after rename

Repository was renamed from cookbook-openstack-metering to
cookbook-openstack-telemetry. Updating .gitreview to point to the new
repository url. Added 'defaultbranch' attribute for
'stable/grizzly'. Adding in a rubocop.yml that will skip all errors, as
rubocop style checker was added during the havana cycle.

Change-Id: Ie2292c521ed8b92940ecae564ecc54aed35add6d
This commit is contained in:
galstrom21 2014-03-13 15:13:58 -05:00
parent 6ab2050905
commit 0b4d09e57c
3 changed files with 67 additions and 1 deletions

View File

@ -1,4 +1,5 @@
[gerrit]
host=review.openstack.org
port=29418
project=stackforge/cookbook-openstack-metering.git
project=stackforge/cookbook-openstack-telemetry.git
defaultbranch=stable/grizzly

64
.rubocop.yml Normal file
View File

@ -0,0 +1,64 @@
# This configuration was generated by `rubocop --auto-gen-config`
# on 2014-03-17 11:31:13 -0500 using RuboCop version 0.18.1.
# The point is for the user to remove these configuration records
# one by one as the offences are removed from the code base.
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.
# Offence count: 24
# Cop supports --auto-correct.
AlignParameters:
Enabled: false
# Offence count: 2
Documentation:
Enabled: false
# Offence count: 4
# Configuration parameters: Style, SupportedStyles.
DotPosition:
Enabled: false
# Offence count: 1
# Cop supports --auto-correct.
EmptyLines:
Enabled: false
# Offence count: 3
# Cop supports --auto-correct.
EmptyLiteral:
Enabled: false
# Offence count: 20
Encoding:
Enabled: false
# Offence count: 32
# Cop supports --auto-correct.
# Configuration parameters: SupportedStyles.
HashSyntax:
EnforcedStyle: hash_rockets
# Offence count: 11
LineLength:
Max: 116
# Offence count: 1
# Configuration parameters: CountComments.
MethodLength:
Max: 11
# Offence count: 549
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles.
StringLiterals:
Enabled: false
# Offence count: 1
# Cop supports --auto-correct.
WordArray:
MinSize: 2
# Offence count: 1
IfUnlessModifier:
Enabled: false

View File

@ -7,3 +7,4 @@ gem "chefspec", "~> 1.3.0"
gem "foodcritic"
gem "strainer"
gem "tailor"
gem 'rubocop', '~> 0.18.1'