Initial Liberty Changes

Metadata changes
- Updated maintainer email
- Updated the version

rubocop updates

Change-Id: I12a98b58afbda429720e0b95ae64268f148dbaa6
This commit is contained in:
JJ Asghar 2015-08-27 16:54:13 -05:00 committed by Mark Vanderwiel
parent 8cfa80e9cb
commit de16ad45f8
6 changed files with 21 additions and 16 deletions

View File

@ -1,3 +1,4 @@
inherit_from: .rubocop_todo.yml
AllCops:
Include:
- metadata.rb
@ -28,4 +29,4 @@ WordArray:
MinSize: 3
MethodLength:
Max: 15
Max: 15

10
.rubocop_todo.yml Normal file
View File

@ -0,0 +1,10 @@
# This configuration was generated by `rubocop --auto-gen-config`
# on 2015-08-31 10:13:18 -0500 using RuboCop version 0.32.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: 1
Metrics/AbcSize:
Max: 22

View File

@ -22,14 +22,14 @@ module Openstack
module Nova
include Openstack::Client
def nova # rubocop:disable all
def nova
@nova ||= Fog::Compute.new(provider: 'openstack',
openstack_username: new_resource.openstack_username,
openstack_api_key: new_resource.openstack_password,
openstack_auth_url: new_resource.openstack_auth_url,
openstack_tenant: new_resource.openstack_tenant,
openstack_region: new_resource.openstack_region
) # rubocop:disable all
)
end
end
end

View File

@ -22,7 +22,7 @@ module Openstack
module Swift
include Openstack::Client
def swift # rubocop:disable all
def swift
@swift ||= Fog::Storage.new(provider: 'openstack',
openstack_username: new_resource.openstack_username,
openstack_api_key: new_resource.openstack_password,
@ -34,7 +34,7 @@ module Openstack
openstack_service_name: new_resource.openstack_service_name,
openstack_service_type: new_resource.openstack_service_type,
openstack_endpoint_type: new_resource.openstack_endpoint_type
) # rubocop:disable all
)
end
end
end

View File

@ -1,11 +1,11 @@
# Encoding: utf-8
name 'openstack_client'
maintainer 'openstack-chef'
maintainer_email 'opscode-chef-openstack@googlegroups.com'
maintainer_email 'openstack-dev@lists.openstack.org'
license 'Apache2'
description 'Library cookbook to interact with Openstack Clouds'
description 'Library cookbook to interact with OpenStack Clouds'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '11.0.0'
version '12.0.0'
supports 'ubuntu', '>= 14.04'
supports 'centos', '>= 6.5'

View File

@ -9,10 +9,7 @@ describe 'openstack_client::_example_nova' do
it 'spins up a test machine' do
expect(chef_run).to create_openstack_client_nova_server(
'test1'
).with(
action: [:create]
)
'test1').with(action: [:create])
end
end
@ -23,10 +20,7 @@ describe 'openstack_client::_example_nova' do
it 'deletes a test machine' do
expect(chef_run).to delete_openstack_client_nova_server(
'test'
).with(
action: [:delete]
)
'test').with(action: [:delete])
end
end