kitchen-cabinet 1.2.0 → 1.2.1.dev
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/README.md +15 -13
- data/kitchen-cabinet.gemspec +1 -1
- data/lib/kitchen-cabinet/templates/Gemfile.eruby +15 -13
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 44302f9d56d8ce49112cf18c66679dad6595ee56
|
4
|
+
data.tar.gz: 9992ee0534e54e308c98c14dc800e738e7a0ce79
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eca3b94d3f72f0c3753c49b9e49ca5ea458c394a503a52501c721ade59fd7f0f6f3bba8fef89d2394fdfb87cffdff73aaa3f8ebdf751404b7ea8fe50ca294abd
|
7
|
+
data.tar.gz: 0233443bc85e4e8aa32451881434f81fd933fd91599d298ef0cd797d30df3fa07d472f7a86bc090ac70dc8623f5d7a39a8947c670ae6a80b0270d3744e970272
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -7,38 +7,40 @@ About
|
|
7
7
|
|
8
8
|
Inspiration for this gem was taken from [meez](https://github.com/paulczar/meez). It creates an opinionated cookbook complete with testing suites.
|
9
9
|
|
10
|
-
Once `cabinet` has finished running, you will have a new cookbook complete with an initialized git repo, chefspec, serverspec, strainer, test-kitchen, guard (with notifications via inotify/fsevent/
|
10
|
+
Once `cabinet` has finished running, you will have a new cookbook complete with an initialized git repo, chefspec, serverspec, strainer, test-kitchen, guard (with notifications via inotify/fsevent/terminal-notifier), rubocop, foodcritic, berkshelf, and stove.
|
11
11
|
|
12
12
|
It will automatically create a Gemfile for you with different groups set up for development, testing, etc:
|
13
13
|
|
14
14
|
`````` ruby
|
15
15
|
source 'https://rubygems.org'
|
16
16
|
|
17
|
-
gem 'berkshelf',
|
17
|
+
gem 'berkshelf', '~> 2.0.14'
|
18
18
|
|
19
19
|
group :unit do
|
20
|
-
gem 'foodcritic',
|
21
|
-
gem 'rubocop',
|
22
|
-
gem 'chefspec',
|
20
|
+
gem 'foodcritic', '~> 3.0'
|
21
|
+
gem 'rubocop', '~> 0.18.0'
|
22
|
+
gem 'chefspec', '~> 3.2.0'
|
23
23
|
end
|
24
24
|
|
25
25
|
group :integration do
|
26
|
-
gem 'test-kitchen',
|
26
|
+
gem 'test-kitchen', '~> 1.2'
|
27
27
|
gem 'kitchen-vagrant'
|
28
28
|
end
|
29
29
|
|
30
30
|
group :release do
|
31
|
-
gem 'stove', '~> 1.1
|
31
|
+
gem 'stove', '~> 1.1'
|
32
|
+
gem 'rspec_junit_formatter'
|
33
|
+
gem 'rubocop-checkstyle_formatter'
|
32
34
|
end
|
33
35
|
|
34
36
|
group :development do
|
35
|
-
gem 'strainer',
|
36
|
-
gem 'serverspec',
|
37
|
-
gem 'guard',
|
38
|
-
gem 'guard-rubocop',
|
37
|
+
gem 'strainer', '~> 3.3.0'
|
38
|
+
gem 'serverspec', '~> 0.14.2'
|
39
|
+
gem 'guard', '~> 1.8'
|
40
|
+
gem 'guard-rubocop', '~> 0.2'
|
39
41
|
gem 'guard-foodcritic', '~> 1.0'
|
40
|
-
gem 'guard-kitchen',
|
41
|
-
gem 'guard-rspec',
|
42
|
+
gem 'guard-kitchen', '~> 0.0'
|
43
|
+
gem 'guard-rspec', '~> 3.0'
|
42
44
|
gem 'rb-fsevent', :require => false
|
43
45
|
gem 'rb-inotify', :require => false
|
44
46
|
gem 'terminal-notifier-guard', :require => false
|
data/kitchen-cabinet.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = "kitchen-cabinet"
|
3
|
-
s.version = '1.2.
|
3
|
+
s.version = '1.2.1.dev'
|
4
4
|
s.date = Time.now.strftime("%Y-%m-%d")
|
5
5
|
s.homepage = 'https://github.com/onehealth/kitchen-cabinet'
|
6
6
|
s.summary = 'Initializes a chef cookbook repo with relevant tools'
|
@@ -1,31 +1,33 @@
|
|
1
1
|
source 'https://rubygems.org'
|
2
2
|
|
3
|
-
gem 'berkshelf',
|
3
|
+
gem 'berkshelf', '~> 2.0.14'
|
4
4
|
|
5
5
|
group :unit do
|
6
|
-
gem 'foodcritic',
|
7
|
-
gem 'rubocop',
|
8
|
-
gem 'chefspec',
|
6
|
+
gem 'foodcritic', '~> 3.0'
|
7
|
+
gem 'rubocop', '~> 0.18.0'
|
8
|
+
gem 'chefspec', '~> 3.2.0'
|
9
9
|
end
|
10
10
|
|
11
11
|
group :integration do
|
12
|
-
gem 'test-kitchen',
|
12
|
+
gem 'test-kitchen', '~> 1.2'
|
13
13
|
gem 'kitchen-vagrant'
|
14
14
|
end
|
15
15
|
|
16
16
|
group :release do
|
17
|
-
gem 'stove', '~> 1.1
|
17
|
+
gem 'stove', '~> 1.1'
|
18
|
+
gem 'rspec_junit_formatter'
|
19
|
+
gem 'rubocop-checkstyle_formatter'
|
18
20
|
end
|
19
21
|
|
20
22
|
group :development do
|
21
|
-
gem 'strainer',
|
22
|
-
gem 'serverspec',
|
23
|
-
gem 'guard',
|
24
|
-
gem 'guard-rubocop',
|
23
|
+
gem 'strainer', '~> 3.3.0'
|
24
|
+
gem 'serverspec', '~> 0.14.2'
|
25
|
+
gem 'guard', '~> 1.8'
|
26
|
+
gem 'guard-rubocop', '~> 0.2'
|
25
27
|
gem 'guard-foodcritic', '~> 1.0'
|
26
|
-
gem 'guard-kitchen',
|
27
|
-
gem 'guard-rspec',
|
28
|
+
gem 'guard-kitchen', '~> 0.0'
|
29
|
+
gem 'guard-rspec', '~> 3.0'
|
28
30
|
gem 'rb-fsevent', :require => false
|
29
31
|
gem 'rb-inotify', :require => false
|
30
32
|
gem 'terminal-notifier-guard', :require => false
|
31
|
-
end
|
33
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kitchen-cabinet
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.1.dev
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Taylor Price
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-02-
|
11
|
+
date: 2014-02-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: chef
|
@@ -226,9 +226,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
226
226
|
version: 1.9.3
|
227
227
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
228
228
|
requirements:
|
229
|
-
- - "
|
229
|
+
- - ">"
|
230
230
|
- !ruby/object:Gem::Version
|
231
|
-
version:
|
231
|
+
version: 1.3.1
|
232
232
|
requirements: []
|
233
233
|
rubyforge_project:
|
234
234
|
rubygems_version: 2.2.2
|