Initial kilo updates

Change-Id: I16d6bd914040eeaa8e081140e223b4e9b1869fcc
Partial-Bug: #1426424
This commit is contained in:
Mark Vanderwiel 2015-02-27 14:31:52 -06:00
parent 7dae9ff210
commit d081433097
5 changed files with 51 additions and 11 deletions

2
.gitignore vendored
View File

@ -5,5 +5,5 @@ berks-cookbooks/
.coverage/
*.swp
Berksfile.lock
Gemfile.lock
Vagrantfile
Gemfile.lock

View File

@ -1,3 +1,5 @@
inherit_from: .rubocop_todo.yml
AllCops:
Include:
- metadata.rb
@ -9,7 +11,9 @@ AllCops:
- resources/**
- spec/**
Exclude:
- berks-cookbooks/**
- .cookbooks/**/*
- berks-cookbooks/**/*
- .bundle/**/*
Encoding:
Exclude:

34
.rubocop_todo.yml Normal file
View File

@ -0,0 +1,34 @@
# This configuration was generated by `rubocop --auto-gen-config`
# on 2015-02-27 14:31:02 -0600 using RuboCop version 0.29.1.
# 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: 2
# Configuration parameters: EnforcedStyle, SupportedStyles.
Style/ClassAndModuleChildren:
Enabled: false
# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles.
Style/FirstParameterIndentation:
Enabled: false
# Offense count: 6
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles.
Style/IndentHash:
Enabled: false
# Offense count: 7
# Cop supports --auto-correct.
# Configuration parameters: PreferredDelimiters.
Style/PercentLiteralDelimiters:
Enabled: false
# Offense count: 27
# Cop supports --auto-correct.
Style/SingleSpaceBeforeFirstArg:
Enabled: false

View File

@ -1,8 +1,10 @@
source 'https://rubygems.org'
gem 'chef', '~> 11.16'
gem 'chef', '~> 11.18.6'
gem 'json', '<= 1.7.7' # chef 11 dependency
gem 'berkshelf', '~> 3.1.5'
gem 'berkshelf', '~> 3.2.1'
gem 'hashie', '~> 2.0'
gem 'chefspec', '~> 4.0.0'
gem 'rspec', '~> 3.0.0'
gem 'foodcritic', '~> 4.0'
gem 'rubocop', '~> 0.18.1'
gem 'rubocop', '~> 0.29.1'

View File

@ -4,15 +4,15 @@ maintainer 'Rackspace US, Inc.'
license 'Apache 2.0'
description 'Installs and configures the Tempest Integration Test Suite'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '9.0.0'
version '11.0.0'
recipe 'openstack-integration-test::setup', 'Installs and configures Tempest'
%w{ ubuntu fedora redhat centos }.each do |os|
supports os
end
depends 'openstack-common', '>= 10.2.0'
depends 'openstack-identity', '>= 10.0.0'
depends 'openstack-image', '>= 10.0.0'
depends 'openstack-compute', '>= 10.0.0'
depends 'openstack-block-storage', '>= 10.0.0'
depends 'openstack-common', '>= 11.0.0'
depends 'openstack-identity', '>= 11.0.0'
depends 'openstack-image', '>= 11.0.0'
depends 'openstack-compute', '>= 11.0.0'
depends 'openstack-block-storage', '>= 11.0.0'