sous-chef 0.0.0

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.
Files changed (5) hide show
  1. data/.gitignore +5 -0
  2. data/Gemfile +4 -0
  3. data/Gemfile.lock +80 -0
  4. data/sous-chef.gemspec +23 -0
  5. metadata +64 -0
data/.gitignore ADDED
@@ -0,0 +1,5 @@
1
+ .DS_STORE
2
+ .rvmrc
3
+ .ruby-version
4
+ *.gem
5
+
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ gemspec
4
+
data/Gemfile.lock ADDED
@@ -0,0 +1,80 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ sous-chef (0.0.1)
5
+ knife-solo (~> 0.1.0)
6
+
7
+ GEM
8
+ remote: http://rubygems.org/
9
+ specs:
10
+ archive-tar-minitar (0.5.2)
11
+ bunny (0.7.9)
12
+ chef (10.18.2)
13
+ bunny (>= 0.6.0, < 0.8.0)
14
+ erubis
15
+ highline (>= 1.6.9)
16
+ json (>= 1.4.4, <= 1.6.1)
17
+ mixlib-authentication (>= 1.3.0)
18
+ mixlib-cli (>= 1.1.0)
19
+ mixlib-config (>= 1.1.2)
20
+ mixlib-log (>= 1.3.0)
21
+ mixlib-shellout
22
+ moneta (< 0.7.0)
23
+ net-ssh (~> 2.2.2)
24
+ net-ssh-multi (~> 1.1.0)
25
+ ohai (>= 0.6.0)
26
+ rest-client (>= 1.0.4, < 1.7.0)
27
+ treetop (~> 1.4.9)
28
+ uuidtools
29
+ yajl-ruby (~> 1.1)
30
+ erubis (2.7.0)
31
+ highline (1.6.15)
32
+ ipaddress (0.8.0)
33
+ json (1.6.1)
34
+ knife-solo (0.1.0)
35
+ chef (~> 10.12)
36
+ librarian (~> 0.0.20)
37
+ net-ssh (~> 2.2.2)
38
+ librarian (0.0.26)
39
+ archive-tar-minitar (>= 0.5.2)
40
+ chef (>= 0.10)
41
+ highline
42
+ thor (~> 0.15)
43
+ mime-types (1.19)
44
+ mixlib-authentication (1.3.0)
45
+ mixlib-log
46
+ mixlib-cli (1.3.0)
47
+ mixlib-config (1.1.2)
48
+ mixlib-log (1.4.1)
49
+ mixlib-shellout (1.1.0)
50
+ moneta (0.6.0)
51
+ net-ssh (2.2.2)
52
+ net-ssh-gateway (1.1.0)
53
+ net-ssh (>= 1.99.1)
54
+ net-ssh-multi (1.1)
55
+ net-ssh (>= 2.1.4)
56
+ net-ssh-gateway (>= 0.99.0)
57
+ ohai (6.16.0)
58
+ ipaddress
59
+ mixlib-cli
60
+ mixlib-config
61
+ mixlib-log
62
+ mixlib-shellout
63
+ systemu
64
+ yajl-ruby
65
+ polyglot (0.3.3)
66
+ rest-client (1.6.7)
67
+ mime-types (>= 1.16)
68
+ systemu (2.5.2)
69
+ thor (0.16.0)
70
+ treetop (1.4.12)
71
+ polyglot
72
+ polyglot (>= 0.3.1)
73
+ uuidtools (2.1.3)
74
+ yajl-ruby (1.1.0)
75
+
76
+ PLATFORMS
77
+ ruby
78
+
79
+ DEPENDENCIES
80
+ sous-chef!
data/sous-chef.gemspec ADDED
@@ -0,0 +1,23 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+
4
+ Gem::Specification.new do |s|
5
+ s.name = 'sous-chef'
6
+ s.version = "0.0.0"
7
+ s.summary = "Manage nodes"
8
+ s.description = "Handles configuration and management of chef nodes"
9
+
10
+ s.authors = "Shaun Dern"
11
+ s.email = "shaun@substantail.com"
12
+
13
+ s.rubyforge_project = "sous-chef"
14
+
15
+ s.files = `git ls-files`.split("\n")
16
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
17
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
18
+ s.require_paths = ["lib"]
19
+
20
+ s.add_dependency "knife-solo", "~> 0.1.0"
21
+
22
+ end
23
+
metadata ADDED
@@ -0,0 +1,64 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: sous-chef
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Shaun Dern
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-01-23 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: knife-solo
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 0.1.0
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: 0.1.0
30
+ description: Handles configuration and management of chef nodes
31
+ email: shaun@substantail.com
32
+ executables: []
33
+ extensions: []
34
+ extra_rdoc_files: []
35
+ files:
36
+ - .gitignore
37
+ - Gemfile
38
+ - Gemfile.lock
39
+ - sous-chef.gemspec
40
+ homepage:
41
+ licenses: []
42
+ post_install_message:
43
+ rdoc_options: []
44
+ require_paths:
45
+ - lib
46
+ required_ruby_version: !ruby/object:Gem::Requirement
47
+ none: false
48
+ requirements:
49
+ - - ! '>='
50
+ - !ruby/object:Gem::Version
51
+ version: '0'
52
+ required_rubygems_version: !ruby/object:Gem::Requirement
53
+ none: false
54
+ requirements:
55
+ - - ! '>='
56
+ - !ruby/object:Gem::Version
57
+ version: '0'
58
+ requirements: []
59
+ rubyforge_project: sous-chef
60
+ rubygems_version: 1.8.24
61
+ signing_key:
62
+ specification_version: 3
63
+ summary: Manage nodes
64
+ test_files: []