chef-gen-flavors 0.8.0 → 0.8.1
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/History.md +4 -0
- data/chef-gen-flavors.gemspec +2 -2
- data/lib/chef_gen/flavors.rb +1 -1
- data/shared/snippet/cookbookbase/Gemfile.erb +0 -1
- data/shared/snippet/stylerubocop/_rubocop_yml.erb +4 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a217e0bf3aee003d0a3f2df665b4a6e8fc2a5244
|
|
4
|
+
data.tar.gz: 1ba45de5ae0f68d5af2ea6a0fb1cf8460b2fbd9c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 96440a02c5c86c4b3706b8abf62f4c4e2afd986171696d2b175c522bb5fd09121f37a73c4aec08f7ade59304449f91f6fdb066fbea4412f9e278315483aa6cc7
|
|
7
|
+
data.tar.gz: 54716179b1c2909bfa9852b1dde239901946cb4d45b080fc14ccfc072331f721fc513bd0400dcff232d7f9071260afd026a3d7afeec2e1ed479e8f6bae1ff59a
|
data/History.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog for chef-gen-flavors
|
|
2
2
|
|
|
3
|
+
## 0.8.1
|
|
4
|
+
|
|
5
|
+
* CookbookBase snippet: disable the line length cop in Gemfile via .rubocop.yml instead of via an inline comment
|
|
6
|
+
|
|
3
7
|
## 0.8.0
|
|
4
8
|
|
|
5
9
|
* give snippets the ability to use the add_render to construct resources with additional attributes
|
data/chef-gen-flavors.gemspec
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
|
-
# stub: chef-gen-flavors 0.8.
|
|
2
|
+
# stub: chef-gen-flavors 0.8.1.20150618142659 ruby lib
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |s|
|
|
5
5
|
s.name = "chef-gen-flavors"
|
|
6
|
-
s.version = "0.8.
|
|
6
|
+
s.version = "0.8.1.20150618142659"
|
|
7
7
|
|
|
8
8
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
9
9
|
s.require_paths = ["lib"]
|
data/lib/chef_gen/flavors.rb
CHANGED