butcher 0.0.4 → 0.1.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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 49d85ccf4a1aac378a410c2c4738535add224f0b
4
+ data.tar.gz: 81f1860c81f6d7bb796e696546c2e302d7fab35e
5
+ SHA512:
6
+ metadata.gz: 6eb34d9f3b333e761396e3d95657fc87be1d728acd53904ba9af2ef9eb853ffda2c7526e8c1c8297d7cdae62298178316fbc919df9a1576a42bd360c7e4d9b32
7
+ data.tar.gz: 0fe9c38286638147123ddde85095c2da004840540a31194982ebc6a1f0438eec80d1b1d5d8080b27a7902e1a24a662a1c9456b777808a6dcba4c106432b307e8
@@ -1 +1 @@
1
- 1.9.3-p194
1
+ 2.0.0-p195
@@ -2,6 +2,7 @@ language: ruby
2
2
  rvm:
3
3
  - 1.9.3
4
4
  - 1.8.7
5
+ - 2.0.0-p195
5
6
  - ree
6
7
  script: "bundle exec rspec spec && bundle exec cucumber features"
7
8
  notifications:
data/Gemfile CHANGED
@@ -2,3 +2,13 @@ source "http://rubygems.org"
2
2
 
3
3
  # Specify your gem's dependencies in butcher.gemspec
4
4
  gemspec
5
+
6
+ group :test do
7
+ gem "rspec", "> 2"
8
+ gem "aruba"
9
+ gem "aruba-doubles"
10
+ gem "rb-fsevent"
11
+ gem "guard-rspec"
12
+ gem "guard-cucumber"
13
+ gem "mocha"
14
+ end
@@ -0,0 +1,19 @@
1
+ Copyright (c) 2013 Eric Saxby
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in
11
+ all copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
+ THE SOFTWARE.
data/README.md CHANGED
@@ -53,17 +53,22 @@ from the top level of a chef repo.
53
53
 
54
54
  ## License
55
55
 
56
- Copyright 2012 ModCloth
57
-
58
- Licensed under the Apache License, Version 2.0 (the "License");
59
- you may not use this file except in compliance with the License.
60
- You may obtain a copy of the License at
61
-
62
- http://www.apache.org/licenses/LICENSE-2.0
63
-
64
- Unless required by applicable law or agreed to in writing, software
65
- distributed under the License is distributed on an "AS IS" BASIS,
66
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
67
- See the License for the specific language governing permissions and
68
- limitations under the License.
69
-
56
+ Copyright (c) 2012 Eric Saxby
57
+
58
+ Permission is hereby granted, free of charge, to any person obtaining a copy
59
+ of this software and associated documentation files (the "Software"), to deal
60
+ in the Software without restriction, including without limitation the rights
61
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
62
+ copies of the Software, and to permit persons to whom the Software is
63
+ furnished to do so, subject to the following conditions:
64
+
65
+ The above copyright notice and this permission notice shall be included in
66
+ all copies or substantial portions of the Software.
67
+
68
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
69
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
70
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
71
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
72
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
73
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
74
+ THE SOFTWARE.
@@ -5,9 +5,9 @@ require "butcher/version"
5
5
  Gem::Specification.new do |s|
6
6
  s.name = "butcher"
7
7
  s.version = Butcher::VERSION
8
- s.authors = ["ModCloth", "Eric Saxby"]
8
+ s.authors = ["Eric Saxby"]
9
9
  s.email = %W(git@modcloth.com)
10
- s.homepage = "https://github.com/modcloth/butcher"
10
+ s.homepage = "https://github.com/livinginthepast/butcher"
11
11
  s.summary = %q{All the things to make a chef}
12
12
  s.description = %q{Chef is a tool for managing server automation. A good butcher makes for a good chef.}
13
13
 
@@ -18,14 +18,5 @@ 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 = %W(lib)
20
20
 
21
- # specify any dependencies here; for example:
22
- s.add_development_dependency "rspec", "> 2"
23
- s.add_development_dependency "aruba"
24
- s.add_development_dependency "aruba-doubles"
25
- s.add_development_dependency "rb-fsevent", '~> 0.9.1'
26
- s.add_development_dependency "guard-rspec"
27
- s.add_development_dependency "guard-cucumber"
28
- s.add_development_dependency "mocha"
29
- # s.add_runtime_dependency "x"
30
21
  s.add_runtime_dependency "chef", "~> 10.14"
31
22
  end
@@ -1,3 +1,3 @@
1
1
  module Butcher
2
- VERSION = "0.0.4"
2
+ VERSION = "0.1.0"
3
3
  end
metadata CHANGED
@@ -1,133 +1,18 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: butcher
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
5
- prerelease:
4
+ version: 0.1.0
6
5
  platform: ruby
7
6
  authors:
8
- - ModCloth
9
7
  - Eric Saxby
10
8
  autorequire:
11
9
  bindir: bin
12
10
  cert_chain: []
13
- date: 2012-10-30 00:00:00.000000000 Z
11
+ date: 2013-06-19 00:00:00.000000000 Z
14
12
  dependencies:
15
- - !ruby/object:Gem::Dependency
16
- name: rspec
17
- requirement: !ruby/object:Gem::Requirement
18
- none: false
19
- requirements:
20
- - - ! '>'
21
- - !ruby/object:Gem::Version
22
- version: '2'
23
- type: :development
24
- prerelease: false
25
- version_requirements: !ruby/object:Gem::Requirement
26
- none: false
27
- requirements:
28
- - - ! '>'
29
- - !ruby/object:Gem::Version
30
- version: '2'
31
- - !ruby/object:Gem::Dependency
32
- name: aruba
33
- requirement: !ruby/object:Gem::Requirement
34
- none: false
35
- requirements:
36
- - - ! '>='
37
- - !ruby/object:Gem::Version
38
- version: '0'
39
- type: :development
40
- prerelease: false
41
- version_requirements: !ruby/object:Gem::Requirement
42
- none: false
43
- requirements:
44
- - - ! '>='
45
- - !ruby/object:Gem::Version
46
- version: '0'
47
- - !ruby/object:Gem::Dependency
48
- name: aruba-doubles
49
- requirement: !ruby/object:Gem::Requirement
50
- none: false
51
- requirements:
52
- - - ! '>='
53
- - !ruby/object:Gem::Version
54
- version: '0'
55
- type: :development
56
- prerelease: false
57
- version_requirements: !ruby/object:Gem::Requirement
58
- none: false
59
- requirements:
60
- - - ! '>='
61
- - !ruby/object:Gem::Version
62
- version: '0'
63
- - !ruby/object:Gem::Dependency
64
- name: rb-fsevent
65
- requirement: !ruby/object:Gem::Requirement
66
- none: false
67
- requirements:
68
- - - ~>
69
- - !ruby/object:Gem::Version
70
- version: 0.9.1
71
- type: :development
72
- prerelease: false
73
- version_requirements: !ruby/object:Gem::Requirement
74
- none: false
75
- requirements:
76
- - - ~>
77
- - !ruby/object:Gem::Version
78
- version: 0.9.1
79
- - !ruby/object:Gem::Dependency
80
- name: guard-rspec
81
- requirement: !ruby/object:Gem::Requirement
82
- none: false
83
- requirements:
84
- - - ! '>='
85
- - !ruby/object:Gem::Version
86
- version: '0'
87
- type: :development
88
- prerelease: false
89
- version_requirements: !ruby/object:Gem::Requirement
90
- none: false
91
- requirements:
92
- - - ! '>='
93
- - !ruby/object:Gem::Version
94
- version: '0'
95
- - !ruby/object:Gem::Dependency
96
- name: guard-cucumber
97
- requirement: !ruby/object:Gem::Requirement
98
- none: false
99
- requirements:
100
- - - ! '>='
101
- - !ruby/object:Gem::Version
102
- version: '0'
103
- type: :development
104
- prerelease: false
105
- version_requirements: !ruby/object:Gem::Requirement
106
- none: false
107
- requirements:
108
- - - ! '>='
109
- - !ruby/object:Gem::Version
110
- version: '0'
111
- - !ruby/object:Gem::Dependency
112
- name: mocha
113
- requirement: !ruby/object:Gem::Requirement
114
- none: false
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
- none: false
123
- requirements:
124
- - - ! '>='
125
- - !ruby/object:Gem::Version
126
- version: '0'
127
13
  - !ruby/object:Gem::Dependency
128
14
  name: chef
129
15
  requirement: !ruby/object:Gem::Requirement
130
- none: false
131
16
  requirements:
132
17
  - - ~>
133
18
  - !ruby/object:Gem::Version
@@ -135,7 +20,6 @@ dependencies:
135
20
  type: :runtime
136
21
  prerelease: false
137
22
  version_requirements: !ruby/object:Gem::Requirement
138
- none: false
139
23
  requirements:
140
24
  - - ~>
141
25
  - !ruby/object:Gem::Version
@@ -155,6 +39,7 @@ files:
155
39
  - .travis.yml
156
40
  - Gemfile
157
41
  - Guardfile
42
+ - LICENSE.txt
158
43
  - README.md
159
44
  - Rakefile
160
45
  - bin/stab
@@ -174,29 +59,28 @@ files:
174
59
  - spec/lib/stab/cli_spec.rb
175
60
  - spec/spec_helper.rb
176
61
  - spec/support/test_cache.rb
177
- homepage: https://github.com/modcloth/butcher
62
+ homepage: https://github.com/livinginthepast/butcher
178
63
  licenses: []
64
+ metadata: {}
179
65
  post_install_message:
180
66
  rdoc_options: []
181
67
  require_paths:
182
68
  - lib
183
69
  required_ruby_version: !ruby/object:Gem::Requirement
184
- none: false
185
70
  requirements:
186
- - - ! '>='
71
+ - - '>='
187
72
  - !ruby/object:Gem::Version
188
73
  version: '0'
189
74
  required_rubygems_version: !ruby/object:Gem::Requirement
190
- none: false
191
75
  requirements:
192
- - - ! '>='
76
+ - - '>='
193
77
  - !ruby/object:Gem::Version
194
78
  version: '0'
195
79
  requirements: []
196
80
  rubyforge_project: butcher
197
- rubygems_version: 1.8.24
81
+ rubygems_version: 2.0.2
198
82
  signing_key:
199
- specification_version: 3
83
+ specification_version: 4
200
84
  summary: All the things to make a chef
201
85
  test_files:
202
86
  - features/stab.feature
@@ -209,4 +93,3 @@ test_files:
209
93
  - spec/lib/stab/cli_spec.rb
210
94
  - spec/spec_helper.rb
211
95
  - spec/support/test_cache.rb
212
- has_rdoc: