From 5a07ed0d6dba27b8505a8b5862b5dc18a892c1a0 Mon Sep 17 00:00:00 2001 From: Samuel Cassiba Date: Fri, 3 Aug 2018 06:28:53 -0700 Subject: [PATCH] starting rocky development patch Depends-On: I75d827d383f701da8650cd0e9d1f2501e22cf6a2 Change-Id: I6fc0f0f2c1814e5e617acbde1cc76fc43f8aaebb --- .rubocop.yml | 2 ++ .rubocop_todo.yml | 19 +++++++++++++++++++ metadata.rb | 4 ++-- 3 files changed, 23 insertions(+), 2 deletions(-) create mode 100644 .rubocop_todo.yml diff --git a/.rubocop.yml b/.rubocop.yml index 253be24..5e0be9f 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,3 +1,5 @@ +inherit_from: .rubocop_todo.yml + AllCops: Include: - metadata.rb diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml new file mode 100644 index 0000000..80a53df --- /dev/null +++ b/.rubocop_todo.yml @@ -0,0 +1,19 @@ +# This configuration was generated by +# `rubocop --auto-gen-config` +# on 2018-08-03 05:26:08 -0700 using RuboCop version 0.55.0. +# The point is for the user to remove these configuration records +# one by one as the offenses 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. + +# Offense count: 1 +# Cop supports --auto-correct. +Style/IfUnlessModifier: + Exclude: + - 'attributes/default.rb' + +# Offense count: 18 +# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns. +# URISchemes: http, https +Metrics/LineLength: + Max: 116 diff --git a/metadata.rb b/metadata.rb index 61be00c..2808982 100644 --- a/metadata.rb +++ b/metadata.rb @@ -3,7 +3,7 @@ maintainer 'openstack-chef' maintainer_email 'openstack-dev@lists.openstack.org' license 'Apache-2.0' description 'Provides the shared messaging configuration for Chef for OpenStack.' -version '17.0.0' +version '18.0.0' recipe 'server', 'Installs and configures server packages for messaging queue used by the deployment.' recipe 'rabbitmq-server', 'Installs and configures RabbitMQ and is called via the server recipe' @@ -12,7 +12,7 @@ recipe 'rabbitmq-server', 'Installs and configures RabbitMQ and is called via th supports os end -depends 'openstack-common', '>= 17.0.0' +depends 'openstack-common', '>= 18.0.0' depends 'rabbitmq' issues_url 'https://launchpad.net/openstack-chef' if respond_to?(:issues_url)