Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release candidate knife-cloud 1.0.0.rc.0 #77

Merged
merged 4 commits into from
Jul 27, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# knife-cloud Change Log

## Unreleased
* No changes unreleased

Last Release: v1.0.0.rc.0 (2014-07-25)
-------------------
- First public release candidate



5 changes: 5 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Contributing to knife-cloud

We are glad you want to contribute to knife-cloud. Please see contribution guidelines for
[Chef](http://wiki.opscode.com/display/chef/How+to+Contribute) for information on contributing to this project.

11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Knife Cloud
## Description

Knife-cloud is a library for implementing knife plugins that integrate cloud
infrastructure with Chef. For more information about knife and Chef visit http://opscode.com/chef.
infrastructure with Chef. For more information about knife and Chef visit https://getchef.com/chef.

## Purpose

Expand All @@ -27,12 +27,17 @@ Alternatively, you can build the gem from the knife-cloud source code.

$ git clone https://github.com/opscode/knife-cloud
$ cd knife-cloud
$ gem build .\knife-cloud.gemspec
$ rake gem
$ gem install knife-cloud-x.y.z.gem

## Writing your custom plugin

Create a new ruby project, say knife-myplugin. Add the knife-cloud gem to its gemspec.
General documentation of how to develop a knife plugin can be found in
[Chef documentation](http://docs.getchef.com/plugin_knife_custom.html). Use of
the `knife-cloud` gem to implement the plugin automates many aspects of the
process.

Here is an example of how `knife-cloud` can be used. First, create a new ruby project, say knife-myplugin. Add the knife-cloud gem to its gemspec.

Sample gemspec:

Expand Down
4 changes: 2 additions & 2 deletions knife-cloud.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.extra_rdoc_files = ["README.md", "LICENSE" ]
s.authors = ["Kaustubh Deorukhkar", "Ameya Varade"]
s.email = ["kaustubh@clogeny.com"]
s.email = ["dev@getchef.com"]
s.homepage = "https://github.com/opscode/knife-cloud"
s.summary = %q{knife-cloud plugin}
s.description = s.summary
Expand All @@ -19,8 +19,8 @@ Gem::Specification.new do |s|
s.require_paths = ["lib", "spec"]

s.add_dependency "fog", ">= 1.10.0"
s.add_dependency 'knife-windows', '>= 0.5.14'
s.add_dependency "chef", ">= 0.10.10"
s.add_dependency "knife-windows" # TODO use the revision of refactored knife-windows once its released
s.add_dependency 'mixlib-shellout'

%w(rspec-core rspec-expectations rspec-mocks rspec_junit_formatter).each { |gem| s.add_development_dependency gem }
Expand Down
2 changes: 1 addition & 1 deletion lib/knife-cloud/version.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module Knife
module Cloud
VERSION = "0.0.1"
VERSION = "1.0.0.rc.0"
MAJOR, MINOR, TINY = VERSION.split('.')
end
end