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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fdf1906af1dbba1c06bbea05337a3014905994dc
4
- data.tar.gz: 32c134e20c8c23c093010ed8ba1fe138c7af14ef
3
+ metadata.gz: a217e0bf3aee003d0a3f2df665b4a6e8fc2a5244
4
+ data.tar.gz: 1ba45de5ae0f68d5af2ea6a0fb1cf8460b2fbd9c
5
5
  SHA512:
6
- metadata.gz: 82cb00c61ab851036a62ed662d2d8b6402e619d7a4a932fe4c38463389f8119d0c9e48523c38800c1ce9d59f63aaaa04bb4ecd593530bb234b9862029e4ec2fe
7
- data.tar.gz: 84843f80e10c3391e9f0f7734217745d88890cc4f8d222a045aa2440124a8509c3a8b1b87776a2558b98c1b4ddf3510b30353450e9335608062dd9e6e7ef980c
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
@@ -1,9 +1,9 @@
1
1
  # -*- encoding: utf-8 -*-
2
- # stub: chef-gen-flavors 0.8.0.20150618104356 ruby lib
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.0.20150618104356"
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"]
@@ -8,7 +8,7 @@ module ChefGen
8
8
  # a plugin framework for creating ChefDK generator flavors
9
9
  class Flavors
10
10
  # the version of the gem
11
- VERSION = '0.8.0'
11
+ VERSION = '0.8.1'
12
12
 
13
13
  extend LittlePlugger path: 'chef_gen/flavor',
14
14
  module: ChefGen::Flavor
@@ -2,7 +2,6 @@
2
2
  source '<%= source %>'
3
3
  <% end -%>
4
4
 
5
- # rubocop:disable Metrics/LineLength
6
5
  <% @gems.each do |gem, config| -%>
7
6
  <% if config.is_a?(Array) -%>
8
7
  gem '<%= gem %>', '<%= config[0] %>', <%= config[1..-1].join(', ') %>
@@ -25,3 +25,7 @@ Style/TrailingBlankLines:
25
25
  Exclude:
26
26
  - '**/Guardfile'
27
27
  - '**/Rakefile'
28
+
29
+ Metrics/LineLength:
30
+ Exclude:
31
+ - '**/Gemfile'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chef-gen-flavors
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - James FitzGibbon