Skip to content

Commit

Permalink
Merge pull request #26 from rightscale-cookbooks/curt-dev
Browse files Browse the repository at this point in the history
pin right_api_client
  • Loading branch information
rshade authored Nov 29, 2016
2 parents 20172b4 + c02e36d commit 44d6dab
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 7 deletions.
2 changes: 0 additions & 2 deletions Berksfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ site :opscode

metadata

cookbook 'build-essential'

cookbook "delayed_evaluator", github: "chrisroberts/cookbook-delayed_evaluator"
cookbook "marker", github: "rightscale-cookbooks/marker"
cookbook "test-rightscale_volume", path: "./test/cookbooks/test-rightscale_volume"
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ rightscale_volume Cookbook CHANGELOG

This file is used to list changes made in each version of the rightscale_volume cookbook.

v1.3.1
------
- Pin right_api_client at v1.6.1 for ruby 1.9.3 support, Chef 11

v1.2.10
-------

Expand Down
5 changes: 4 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,15 @@ gem 'berkshelf'
gem 'thor-foodcritic'
gem 'thor-scmversion'
gem 'right_api_client'
gem 'rightscale_upload', :github => 'rightscale/rightscale_upload'

group :integration do
gem 'strainer', '~> 3.3.0'
gem 'chefspec', '~> 3.4.0'
gem 'rspec', '~> 2.14.1'
gem 'ohai', '~> 7.4.0'
gem 'travis-lint'
gem 'buff-ignore','1.1.1'
gem 'rack', '1.6.4'
gem 'json','~> 1.8.0'
gem 'net-http-persistent', '= 2.9.4'
end
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Github Repository: [https://github.com/rightscale-cookbooks/rightscale_volume](h
# Requirements

* The system being configured must be a RightScale managed VM to have the required access to the RightScale API.
* Chef 11 or higher.
* Chef 11.
* [RightLink 10](http://docs.rightscale.com/rl10/) See cookbook version 1.2.6 for RightLink 6 support
* Also requires a RightScale account that is registered with all the cloud vendors
you expect to provision on (e.g. AWS, Rackspace, Openstack, CloudStack, GCE, and Azure).
Expand Down
4 changes: 2 additions & 2 deletions metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
license 'Apache 2.0'
description 'Provides a resource to manage volumes on any cloud RightScale supports.'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '1.3.0'
version '1.3.1'

depends 'build-essential'
depends 'build-essential', '3.2.0'
recipe "rightscale_volume::default", "Default recipe for installing required packages/gems."
5 changes: 4 additions & 1 deletion recipes/default.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,7 @@

# Install gems during compile phase so that they are available to files
# which require them during converge phase.
chef_gem 'right_api_client'
# pin gem for ruby 1.9/chef 11 compatiblity
chef_gem 'right_api_client' do
version "1.6.1"
end

0 comments on commit 44d6dab

Please sign in to comment.