knife-joyent 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +1 -0
- data/knife-joyent.gemspec +3 -2
- data/lib/{knife-joyent → chef/knife}/base.rb +0 -0
- data/lib/{knife-joyent → chef/knife}/joyent_flavor_list.rb +0 -0
- data/lib/{knife-joyent → chef/knife}/joyent_image_list.rb +0 -0
- data/lib/{knife-joyent → chef/knife}/joyent_key_add.rb +0 -0
- data/lib/{knife-joyent → chef/knife}/joyent_key_delete.rb +0 -0
- data/lib/{knife-joyent → chef/knife}/joyent_key_list.rb +0 -0
- data/lib/{knife-joyent → chef/knife}/joyent_server_create.rb +0 -0
- data/lib/{knife-joyent → chef/knife}/joyent_server_list.rb +0 -0
- data/lib/{knife-joyent → chef/knife}/joyent_server_reboot.rb +0 -0
- data/lib/{knife-joyent → chef/knife}/joyent_server_resize.rb +0 -0
- data/lib/{knife-joyent → chef/knife}/joyent_server_start.rb +0 -0
- data/lib/{knife-joyent → chef/knife}/joyent_server_stop.rb +0 -0
- data/lib/{knife-joyent → chef/knife}/joyent_snapshot_create.rb +0 -0
- data/lib/{knife-joyent → chef/knife}/joyent_snapshot_delete.rb +0 -0
- data/lib/{knife-joyent → chef/knife}/joyent_snapshot_list.rb +0 -0
- data/lib/{knife-joyent → chef/knife}/joyent_tag_create.rb +0 -0
- data/lib/{knife-joyent → chef/knife}/joyent_tag_delete.rb +0 -0
- data/lib/{knife-joyent → chef/knife}/joyent_tag_list.rb +0 -0
- data/lib/knife-joyent/version.rb +1 -1
- metadata +43 -31
data/.gitignore
CHANGED
data/knife-joyent.gemspec
CHANGED
|
@@ -8,7 +8,7 @@ Gem::Specification.new do |s|
|
|
|
8
8
|
s.has_rdoc = true
|
|
9
9
|
s.authors = ["Kevin Chan"]
|
|
10
10
|
s.email = ["kevin@joyent.com"]
|
|
11
|
-
s.homepage = "
|
|
11
|
+
s.homepage = "https://github.com/kevinykchan/knife-joyent"
|
|
12
12
|
s.summary = "Joyent CloudAPI Support for Chef's Knife Command"
|
|
13
13
|
s.description = s.summary
|
|
14
14
|
s.extra_rdoc_files = ["README.md", "LICENSE"]
|
|
@@ -16,7 +16,8 @@ Gem::Specification.new do |s|
|
|
|
16
16
|
s.files = `git ls-files`.split("\n")
|
|
17
17
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
18
18
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
19
|
-
s.add_dependency "fog", "1.3
|
|
19
|
+
s.add_dependency "fog", "~> 1.3"
|
|
20
|
+
s.add_dependency "chef", "~> 0.10"
|
|
20
21
|
s.require_paths = ["lib"]
|
|
21
22
|
|
|
22
23
|
end
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/lib/knife-joyent/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: knife-joyent
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
5
|
-
prerelease:
|
|
4
|
+
hash: 25
|
|
5
|
+
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 3
|
|
10
|
+
version: 0.0.3
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Kevin Chan
|
|
@@ -15,8 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2012-04-
|
|
19
|
-
default_executable:
|
|
18
|
+
date: 2012-04-22 00:00:00 Z
|
|
20
19
|
dependencies:
|
|
21
20
|
- !ruby/object:Gem::Dependency
|
|
22
21
|
name: fog
|
|
@@ -24,16 +23,30 @@ dependencies:
|
|
|
24
23
|
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
24
|
none: false
|
|
26
25
|
requirements:
|
|
27
|
-
- -
|
|
26
|
+
- - ~>
|
|
28
27
|
- !ruby/object:Gem::Version
|
|
29
|
-
hash:
|
|
28
|
+
hash: 9
|
|
30
29
|
segments:
|
|
31
30
|
- 1
|
|
32
31
|
- 3
|
|
33
|
-
|
|
34
|
-
version: 1.3.1
|
|
32
|
+
version: "1.3"
|
|
35
33
|
type: :runtime
|
|
36
34
|
version_requirements: *id001
|
|
35
|
+
- !ruby/object:Gem::Dependency
|
|
36
|
+
name: chef
|
|
37
|
+
prerelease: false
|
|
38
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
39
|
+
none: false
|
|
40
|
+
requirements:
|
|
41
|
+
- - ~>
|
|
42
|
+
- !ruby/object:Gem::Version
|
|
43
|
+
hash: 31
|
|
44
|
+
segments:
|
|
45
|
+
- 0
|
|
46
|
+
- 10
|
|
47
|
+
version: "0.10"
|
|
48
|
+
type: :runtime
|
|
49
|
+
version_requirements: *id002
|
|
37
50
|
description: Joyent CloudAPI Support for Chef's Knife Command
|
|
38
51
|
email:
|
|
39
52
|
- kevin@joyent.com
|
|
@@ -51,28 +64,27 @@ files:
|
|
|
51
64
|
- README.md
|
|
52
65
|
- Rakefile
|
|
53
66
|
- knife-joyent.gemspec
|
|
67
|
+
- lib/chef/knife/base.rb
|
|
68
|
+
- lib/chef/knife/joyent_flavor_list.rb
|
|
69
|
+
- lib/chef/knife/joyent_image_list.rb
|
|
70
|
+
- lib/chef/knife/joyent_key_add.rb
|
|
71
|
+
- lib/chef/knife/joyent_key_delete.rb
|
|
72
|
+
- lib/chef/knife/joyent_key_list.rb
|
|
73
|
+
- lib/chef/knife/joyent_server_create.rb
|
|
74
|
+
- lib/chef/knife/joyent_server_list.rb
|
|
75
|
+
- lib/chef/knife/joyent_server_reboot.rb
|
|
76
|
+
- lib/chef/knife/joyent_server_resize.rb
|
|
77
|
+
- lib/chef/knife/joyent_server_start.rb
|
|
78
|
+
- lib/chef/knife/joyent_server_stop.rb
|
|
79
|
+
- lib/chef/knife/joyent_snapshot_create.rb
|
|
80
|
+
- lib/chef/knife/joyent_snapshot_delete.rb
|
|
81
|
+
- lib/chef/knife/joyent_snapshot_list.rb
|
|
82
|
+
- lib/chef/knife/joyent_tag_create.rb
|
|
83
|
+
- lib/chef/knife/joyent_tag_delete.rb
|
|
84
|
+
- lib/chef/knife/joyent_tag_list.rb
|
|
54
85
|
- lib/knife-joyent.rb
|
|
55
|
-
- lib/knife-joyent/base.rb
|
|
56
|
-
- lib/knife-joyent/joyent_flavor_list.rb
|
|
57
|
-
- lib/knife-joyent/joyent_image_list.rb
|
|
58
|
-
- lib/knife-joyent/joyent_key_add.rb
|
|
59
|
-
- lib/knife-joyent/joyent_key_delete.rb
|
|
60
|
-
- lib/knife-joyent/joyent_key_list.rb
|
|
61
|
-
- lib/knife-joyent/joyent_server_create.rb
|
|
62
|
-
- lib/knife-joyent/joyent_server_list.rb
|
|
63
|
-
- lib/knife-joyent/joyent_server_reboot.rb
|
|
64
|
-
- lib/knife-joyent/joyent_server_resize.rb
|
|
65
|
-
- lib/knife-joyent/joyent_server_start.rb
|
|
66
|
-
- lib/knife-joyent/joyent_server_stop.rb
|
|
67
|
-
- lib/knife-joyent/joyent_snapshot_create.rb
|
|
68
|
-
- lib/knife-joyent/joyent_snapshot_delete.rb
|
|
69
|
-
- lib/knife-joyent/joyent_snapshot_list.rb
|
|
70
|
-
- lib/knife-joyent/joyent_tag_create.rb
|
|
71
|
-
- lib/knife-joyent/joyent_tag_delete.rb
|
|
72
|
-
- lib/knife-joyent/joyent_tag_list.rb
|
|
73
86
|
- lib/knife-joyent/version.rb
|
|
74
|
-
|
|
75
|
-
homepage: http://wiki.opscode.com/display/chef
|
|
87
|
+
homepage: https://github.com/kevinykchan/knife-joyent
|
|
76
88
|
licenses: []
|
|
77
89
|
|
|
78
90
|
post_install_message:
|
|
@@ -101,7 +113,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
101
113
|
requirements: []
|
|
102
114
|
|
|
103
115
|
rubyforge_project:
|
|
104
|
-
rubygems_version: 1.
|
|
116
|
+
rubygems_version: 1.8.21
|
|
105
117
|
signing_key:
|
|
106
118
|
specification_version: 3
|
|
107
119
|
summary: Joyent CloudAPI Support for Chef's Knife Command
|