knife-cloud 1.0.0.rc.0 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- N2E4ZDY0ZTk3NGQ1ODFmMGI4ZDY4NDJkYzM2MDhmZTk5NDc5MTQ0OA==
4
+ ZjllOTZhNTFiYWU5NmZlMGRhNjIyNmVlNmVkMjcwNWEyNWVkYzJhZQ==
5
5
  data.tar.gz: !binary |-
6
- M2RiZGYwNThlMmQzN2VmODk2MWY4YzRlMzU3NzI2ZTJlNGUwYmYyYg==
6
+ ZmNiZTM3NzUyZWQ4MWVjMTQ1ZDljYjc4NzYxMDAzZjE0N2U4MjIwNw==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- YzBmZjg5YmQwM2NiYTI2ZWY4MWRhMTZhYjBlYjllZGQ2YmVjYTE1MTRkZjg4
10
- YzlhNmMwZWVkMTFlZDU5ODYxMTkzZmYzMzdiZjQ5ODBlNGU2ODQyM2VlNjUz
11
- NTY3MzMxN2FlZTMzNzQ1ZjEzYTI1OWNjMzRkMWM2ODI0YzhlNWY=
9
+ MzVlYWI1ODg4MzczY2RiZTBlOTM4ZDVkYWM4MzA1ZTcxZDNlOTgwYjJlNGEx
10
+ OWY2ZGRlOGMyNjg5MjRiMjA3Njc4Mzg4MmI5NDkyYzkxNmE4OTc3NjVlZjJl
11
+ YmQ1MDczODE3Yjc3YzIxNTA4OGJmM2EyODcwZDlmNjAzZmVmYjQ=
12
12
  data.tar.gz: !binary |-
13
- MTUwODEzMTI5YTEwNTdjMDhiNDQ0OWY0NGVjOGUxMmE0MDAyYmNiMTUzOThh
14
- YjFjNmJmYTViM2M3YWU2N2Y2OTI0ZjAyN2MyZDBiODY2Y2RhMzFiMzg3ZGQ5
15
- ZWFhNTkyODYzZWJiMDI5OTM1N2NhNzQxMDY0OTU5ZmZhOTNmYjU=
13
+ NTczZmQyMGY1NjNjZDM3ZDU2ODAxZjQxNDc0OGE4NTAxMWYwYThiNTY0YTEy
14
+ Yzc1NDZlNzcxOTY0YzFmZDI0ZGQyMzczNmI4NWU1YmUzYmM0ZTBmM2JjOTQz
15
+ NzhmN2EyNzJjZjFjNTM2NjA2NjJjZjQ0NDFkYzIxNzdhNWMwYjk=
data/CHANGELOG.md CHANGED
@@ -3,8 +3,12 @@
3
3
  ## Unreleased
4
4
  * No changes unreleased
5
5
 
6
- Last Release: v1.0.0.rc.0 (2014-07-25)
7
- -------------------
6
+ Last Release: v1.0.0 (2014-08-11)
7
+ ---------------------------------
8
+ * Make the `Fog` gem a dev dependency
9
+
10
+ v1.0.0.rc.0 (2014-07-25)
11
+ ------------------------
8
12
  - First public release candidate
9
13
 
10
14
 
data/README.md CHANGED
@@ -103,7 +103,8 @@ Create a new ruby project, say knife-myplugin. Its code structure will look like
103
103
  - myplugin_service.rb
104
104
 
105
105
  Knife-cloud has a wrapper written for the Fog service. It can be used in your plugin as mentioned in the steps below. If ruby Fog does not have support for your cloud provider, you will have to write your own Service class analogous to the Chef::Knife::Cloud::FogService class which is defined in knife-cloud.
106
- Implement your Service class which should inherit from the FogService class.
106
+ * Add a dependency on the desired version of the `Fog` gem to your plugin's gemspec.
107
+ * Implement your Service class which should inherit from the FogService class.
107
108
 
108
109
  Example Code:
109
110
 
data/knife-cloud.gemspec CHANGED
@@ -18,10 +18,9 @@ Gem::Specification.new do |s|
18
18
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
19
19
  s.require_paths = ["lib", "spec"]
20
20
 
21
- s.add_dependency "fog", ">= 1.10.0"
22
21
  s.add_dependency 'knife-windows', '>= 0.5.14'
23
22
  s.add_dependency "chef", ">= 0.10.10"
24
23
  s.add_dependency 'mixlib-shellout'
25
24
 
26
- %w(rspec-core rspec-expectations rspec-mocks rspec_junit_formatter).each { |gem| s.add_development_dependency gem }
25
+ %w(rspec-core rspec-expectations rspec-mocks rspec_junit_formatter fog).each { |gem| s.add_development_dependency gem }
27
26
  end
@@ -1,6 +1,6 @@
1
1
  module Knife
2
2
  module Cloud
3
- VERSION = "1.0.0.rc.0"
3
+ VERSION = "1.0.0"
4
4
  MAJOR, MINOR, TINY = VERSION.split('.')
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: knife-cloud
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.rc.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kaustubh Deorukhkar
@@ -9,22 +9,8 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-07-27 00:00:00.000000000 Z
12
+ date: 2014-08-11 00:00:00.000000000 Z
13
13
  dependencies:
14
- - !ruby/object:Gem::Dependency
15
- name: fog
16
- requirement: !ruby/object:Gem::Requirement
17
- requirements:
18
- - - ! '>='
19
- - !ruby/object:Gem::Version
20
- version: 1.10.0
21
- type: :runtime
22
- prerelease: false
23
- version_requirements: !ruby/object:Gem::Requirement
24
- requirements:
25
- - - ! '>='
26
- - !ruby/object:Gem::Version
27
- version: 1.10.0
28
14
  - !ruby/object:Gem::Dependency
29
15
  name: knife-windows
30
16
  requirement: !ruby/object:Gem::Requirement
@@ -123,6 +109,20 @@ dependencies:
123
109
  - - ! '>='
124
110
  - !ruby/object:Gem::Version
125
111
  version: '0'
112
+ - !ruby/object:Gem::Dependency
113
+ name: fog
114
+ requirement: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - ! '>='
117
+ - !ruby/object:Gem::Version
118
+ version: '0'
119
+ type: :development
120
+ prerelease: false
121
+ version_requirements: !ruby/object:Gem::Requirement
122
+ requirements:
123
+ - - ! '>='
124
+ - !ruby/object:Gem::Version
125
+ version: '0'
126
126
  description: knife-cloud plugin
127
127
  email:
128
128
  - dev@getchef.com
@@ -213,9 +213,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
213
213
  version: '0'
214
214
  required_rubygems_version: !ruby/object:Gem::Requirement
215
215
  requirements:
216
- - - ! '>'
216
+ - - ! '>='
217
217
  - !ruby/object:Gem::Version
218
- version: 1.3.1
218
+ version: '0'
219
219
  requirements: []
220
220
  rubyforge_project:
221
221
  rubygems_version: 2.1.11