chef-helpers 0.0.7 → 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.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- MjNkNmNmOWZmMGEzN2UyNmJlMDE1ZWFlMTEzYmU0YTEzZmNkOTVhYw==
4
+ YTkxYWQwMTEwYTgyMGMxODY4MWVmYzM4NDZkZTdmMzk0N2E5NGY0OQ==
5
5
  data.tar.gz: !binary |-
6
- NWI5MmQxZDRjNmQ0NTc1MjNlMmFmNGQzZDQ5OWE0MWFlZTVlYWQ1Zg==
7
- !binary "U0hBNTEy":
6
+ MTYzYWQ2ODdmZDA3YmMwMDE5ZTEzYTM5OWI0MDJiMmZlYWQwYTY1Mw==
7
+ SHA512:
8
8
  metadata.gz: !binary |-
9
- ZTVhY2M5MzBkMzFlNjUzM2MxYjFjYzM0ZjY4NzFiNGZiNjY2OTg1NGVlNjg5
10
- MzRhMTg2MWNhY2JlMDI3NGE4NzUwY2MwYTRiNjJmYTk4MjRkODA4NTU4MDZj
11
- NTY2NGYzYTNjNDMyZWIyMGFjNDg0NTZjZTk1MzI4Y2I5YWNlZTc=
9
+ MjFhMTYzMmU0MGEwYmI3YmE4YWVjZTU1NTFkMGUyZGFjM2IwYTQ4NDFhM2Q2
10
+ Y2U2MGM0MTdiY2VhOGExODVmODEzMjdhYWFlY2VkZTRhMWFhNzNhM2ZkM2Ni
11
+ MzhhMDA4MzQ2YWMyYmFkZjI1Zjk0MmY2YzM1NzYyZDZiNzA0NGQ=
12
12
  data.tar.gz: !binary |-
13
- MDRlMDhmMmQyOGViNzgzZmRhM2JmODUwZjc0OGE0ZWI5YjU2YmU5MzA5MTBk
14
- NDg1YjhhYjc0NjhlZDA5MmM2MTJjMzZmOWM5M2ZjMmI2NGUyNDM2MDBhOTNh
15
- OTVhYTYxZTU0YzAzZDRjNWIyMTAxZWYzM2Y0ODFiY2NhNzczZmU=
13
+ OTk1ODc4ZTkyNGNlMjg4MjM5Y2EwMjIwNGYyNTcyZGRjMTQ1MWI4NjQ5OTdj
14
+ ZTQ4Y2QwNGU3YjdiMmIyMGU4ZTVjMjVmMTRhZjNhZDMzZDU3NjEzNjM3MzRm
15
+ ZThmMTliYTdhZWI0ZmQ2NDgzZTgwZjk0NTZiNTMwOGJmNDA2NGQ=
@@ -0,0 +1,9 @@
1
+ Changes
2
+ =======
3
+
4
+ 0.1.0
5
+ -----
6
+ - First not 0.0.* release
7
+ - Made Chef a development dependency to avoid embedded gem confusion;
8
+ installing it with a `chef_gem` resource is recommended, and then
9
+ we can assume Chef is already installed.
@@ -12,9 +12,9 @@ Gem::Specification.new do |gem|
12
12
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
13
13
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
14
14
  gem.name = "chef-helpers"
15
- gem.require_paths = ["lib"]
15
+ gem.require_paths = [ "lib"]
16
16
  gem.version = ChefHelpers::VERSION
17
17
 
18
- gem.add_dependency "chef"
19
18
  gem.add_dependency "jsonpath"
19
+ gem.add_development_dependency "chef"
20
20
  end
@@ -1,3 +1,3 @@
1
1
  module ChefHelpers
2
- VERSION = "0.0.7"
2
+ VERSION = "0.1.0"
3
3
  end
metadata CHANGED
@@ -1,17 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chef-helpers
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Maciej Pasternacki
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-07-21 00:00:00.000000000 Z
11
+ date: 2013-12-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: chef
14
+ name: jsonpath
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - ! '>='
@@ -25,13 +25,13 @@ dependencies:
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
- name: jsonpath
28
+ name: chef
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - ! '>='
32
32
  - !ruby/object:Gem::Version
33
33
  version: '0'
34
- type: :runtime
34
+ type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
@@ -47,6 +47,7 @@ extra_rdoc_files: []
47
47
  files:
48
48
  - .gitignore
49
49
  - .yardopts
50
+ - CHANGELOG.md
50
51
  - Gemfile
51
52
  - LICENSE
52
53
  - README.md
@@ -75,7 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
76
  version: '0'
76
77
  requirements: []
77
78
  rubyforge_project:
78
- rubygems_version: 2.0.5
79
+ rubygems_version: 2.1.11
79
80
  signing_key:
80
81
  specification_version: 4
81
82
  summary: Helper methods for Opscode Chef