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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 47b7cc6c79c82d35d205d6ee9385b2cbc5f62686
4
- data.tar.gz: 6ccfb49f7fe889a1846ae95baa3900a083423cd7
3
+ metadata.gz: 44302f9d56d8ce49112cf18c66679dad6595ee56
4
+ data.tar.gz: 9992ee0534e54e308c98c14dc800e738e7a0ce79
5
5
  SHA512:
6
- metadata.gz: c09ff07834a45d5e2d62bbab614c312a5fb89a943877bf321f94d0845b3648fcb45765d4ecc8d211a389131efa9914d7ad537d8ea77bf55a5899ee7f232c1e05
7
- data.tar.gz: 55f504888bdc1a3d3b63a4cf6031955dca30c7a220b6176083fbfedb53ababcca7b1f29ecdafdf37d39e68be1a2e9ac6ebc64b0f51e07b14e580d4745febe301
6
+ metadata.gz: eca3b94d3f72f0c3753c49b9e49ca5ea458c394a503a52501c721ade59fd7f0f6f3bba8fef89d2394fdfb87cffdff73aaa3f8ebdf751404b7ea8fe50ca294abd
7
+ data.tar.gz: 0233443bc85e4e8aa32451881434f81fd933fd91599d298ef0cd797d30df3fa07d472f7a86bc090ac70dc8623f5d7a39a8947c670ae6a80b0270d3744e970272
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+
2
+ * Read knife.rb config for cookbook values if no cli overrides are used
3
+
1
4
  ## v1.2.0:
2
5
 
3
6
  * Run commands from current directory if not otherwise specified with -o
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/guard-terminal-notify), rubocop, foodcritic, berkshelf, and stove.
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', '~> 2.0.13'
17
+ gem 'berkshelf', '~> 2.0.14'
18
18
 
19
19
  group :unit do
20
- gem 'foodcritic', '~> 3.0'
21
- gem 'rubocop', '~> 0.18.0'
22
- gem 'chefspec', '~> 3.2.0'
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', '~> 1.1'
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.2'
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', '~> 3.3.0'
36
- gem 'serverspec', '~> 0.14.2'
37
- gem 'guard', '~> 1.8'
38
- gem 'guard-rubocop', '~> 0.2'
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', '~> 0.0'
41
- gem 'guard-rspec', '~> 3.0'
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
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "kitchen-cabinet"
3
- s.version = '1.2.0'
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', '~> 2.0.13'
3
+ gem 'berkshelf', '~> 2.0.14'
4
4
 
5
5
  group :unit do
6
- gem 'foodcritic', '~> 3.0'
7
- gem 'rubocop', '~> 0.18.0'
8
- gem 'chefspec', '~> 3.2.0'
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', '~> 1.1'
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.2'
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', '~> 3.3.0'
22
- gem 'serverspec', '~> 0.14.2'
23
- gem 'guard', '~> 1.8'
24
- gem 'guard-rubocop', '~> 0.2'
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', '~> 0.0'
27
- gem 'guard-rspec', '~> 3.0'
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.0
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-14 00:00:00.000000000 Z
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: '0'
231
+ version: 1.3.1
232
232
  requirements: []
233
233
  rubyforge_project:
234
234
  rubygems_version: 2.2.2