chef-gen-flavor-example 0.3.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 94337106e35ac927f40a197cd1fd9afc915af387
4
- data.tar.gz: a054bff6dc7d39728349576869a108543c257f5d
3
+ metadata.gz: 44c692b412483550b161942dbb8c04c6164686a2
4
+ data.tar.gz: 24877e78f512f8facbbbb006f3b7135be8ad3d4d
5
5
  SHA512:
6
- metadata.gz: 3819b14b65f156e1d9438646dd428f628b93d079d0500019f182dcb2c80406804ded11db2765db2ebe839dc9415a0c618de190b1a583b1e167d4ef8f69f453fd
7
- data.tar.gz: fa367e6b7925f4d55f3c17e73754de70e26a3823adabaab9654014996d89311d6bf4827b5b73bbf95014b8c861f0d333f70c8d61a534fa589aad764e842fa4e4
6
+ metadata.gz: 2f3c3475edafc1f9b05358a0334f20b3b5bde26b0816d669bc38d6fa0f0fd4794889099b95364fee0b277ba6c500f3da41ceebd6cd7f46e607a7927c030e52d7
7
+ data.tar.gz: 79ed71aabf270e779881bd0f3b88e9771a5dd2cc6f2cbe339f0c4f87265b135b4a08539df3636135fa32ff66af3ebd022c56fa22ccac47a731b4642753d3a0c2
data/History.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog for chef-gen-flavor-example
2
2
 
3
+ ## 0.4.0
4
+
5
+ * use the step definitions provided by chef-gen-flavors v0.5
6
+ * extend our feature tests to validate that the generated cookbook can itself be tested cleanly
7
+
3
8
  ## 0.3.0
4
9
 
5
10
  * add an example of how to do feature testing of a flavor using Aruba
@@ -2,7 +2,6 @@
2
2
  .rubocop.yml
3
3
  .travis.yml
4
4
  Gemfile
5
- Gemfile.lock
6
5
  Guardfile
7
6
  History.md
8
7
  LICENSE
@@ -31,6 +30,8 @@ code_generator/templates/default/spec_recipes_default_spec_rb.erb
31
30
  code_generator/templates/default/spec_spec_helper_rb.erb
32
31
  code_generator/templates/default/test_integration_default_serverspec_recipes_default_spec_rb.erb
33
32
  code_generator/templates/default/test_integration_default_serverspec_spec_helper_rb.erb
33
+ features/generate.feature
34
+ features/support/env.rb
34
35
  lib/chef_gen/flavor/example.rb
35
36
  spec/lib/chef_gen/flavor/example_spec.rb
36
37
  spec/spec_helper.rb
data/README.md CHANGED
@@ -13,14 +13,22 @@ An example plugin for [chef-gen-flavors](https://rubygems.org/gems/chef-gen-flav
13
13
 
14
14
  This plugin makes use of most of the snippets available, and is meant as a
15
15
  reference implementation than for actual use. It demonstrates how to create
16
- a template plugin with tests and serve as a good example of how to get
17
- started writing your own templates for distribution.
16
+ a flavor with tests and serves as a good example of how to get
17
+ started writing your own flavors for distribution.
18
18
 
19
- ## USAGE
19
+ # INSTALLATION
20
20
 
21
- To see it in action:
21
+ To install the latest public gem version:
22
22
 
23
23
  chef gem install chef-gen-flavor-example
24
+
25
+ To install from (possibly modified) source:
26
+
27
+ bundle
28
+ bundle exec rake install_gem
29
+
30
+ ## USAGE
31
+
24
32
  chef generate cookbook foo
25
33
 
26
34
  This should generate the following cookbook:
@@ -128,6 +136,23 @@ foo
128
136
  └── spec_helper.rb
129
137
  ```
130
138
 
139
+ ## TESTING
140
+
141
+ To test, run one of:
142
+
143
+ bundle exec rake style
144
+ bundle exec rake spec
145
+ bundle exec rake features
146
+
147
+ The feature tests are written using Aruba, which is a CLI driver for Cucumber.
148
+ It works off of the same feature files you may be used to using in Capybara for
149
+ web app testing (though the steps are perforce quite different).
150
+
151
+ The feature tests provide a good example of how to generate a cookbook of your
152
+ flavor and then test the generated artifact. For example, the test suite that comes
153
+ with the example flavor tests that the Rake tasks can be listed, that the style and
154
+ unit tests run cleanly, and that the kitchen suites can be listed.
155
+
131
156
  ## AUTHOR
132
157
 
133
158
  James FitzGibbon - james.i.fitzgibbon@nordstrom.com - Nordstrom Inc.
data/Rakefile CHANGED
@@ -8,7 +8,7 @@ begin
8
8
  s.version = ChefGen::Flavor::Example::VERSION
9
9
  developer 'James FitzGibbon', 'james.i.fitzgibbon@nordstrom.com'
10
10
  license 'apache2'
11
- extra_deps << ['chef-gen-flavors', '~> 0.4']
11
+ extra_deps << ['chef-gen-flavors', '~> 0.5']
12
12
  extra_dev_deps << ['chef-dk', '~> 0.5']
13
13
  extra_dev_deps << ['hoe', '~> 3.13']
14
14
  extra_dev_deps << ['hoe-gemspec', '~> 1.0']
@@ -87,9 +87,9 @@ rescue LoadError
87
87
  puts 'yard not available; disabling tasks'
88
88
  end
89
89
 
90
- # test is an alias for spec and features
90
+ # test is an alias for testing all the things
91
91
  desc 'runs unit and feature tests'
92
- task test: [:spec, :features]
92
+ task test: [:style, :spec, :features]
93
93
 
94
94
  # default is to test everything
95
95
  desc 'runs all tests'
@@ -1,18 +1,18 @@
1
1
  # -*- encoding: utf-8 -*-
2
- # stub: chef-gen-flavor-example 0.3.0.20150515152333 ruby lib
2
+ # stub: chef-gen-flavor-example 0.4.0.20150518102235 ruby lib
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "chef-gen-flavor-example"
6
- s.version = "0.3.0.20150515152333"
6
+ s.version = "0.4.0.20150518102235"
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"]
10
10
  s.authors = ["James FitzGibbon"]
11
- s.date = "2015-05-15"
12
- s.description = "An example plugin for [chef-gen-flavors](https://rubygems.org/gems/chef-gen-flavors).\n\nThis plugin makes use of most of the snippets available, and is meant as a\nreference implementation than for actual use. It demonstrates how to create\na template plugin with tests and serve as a good example of how to get\nstarted writing your own templates for distribution."
11
+ s.date = "2015-05-18"
12
+ s.description = "An example plugin for [chef-gen-flavors](https://rubygems.org/gems/chef-gen-flavors).\n\nThis plugin makes use of most of the snippets available, and is meant as a\nreference implementation than for actual use. It demonstrates how to create\na flavor with tests and serves as a good example of how to get\nstarted writing your own flavors for distribution."
13
13
  s.email = ["james.i.fitzgibbon@nordstrom.com"]
14
14
  s.extra_rdoc_files = ["History.md", "Manifest.txt", "README.md"]
15
- s.files = [".rspec", ".rubocop.yml", ".travis.yml", "Gemfile", "Gemfile.lock", "Guardfile", "History.md", "LICENSE", "Manifest.txt", "README.md", "Rakefile", "chef-gen-flavor-example.gemspec", "code_generator/files/default/files_default_example_conf", "code_generator/files/default/templates_default_example_conf_erb", "code_generator/libraries/kitchen_helper.rb", "code_generator/metadata.rb", "code_generator/recipes/cookbook.rb", "code_generator/templates/default/Berksfile.erb", "code_generator/templates/default/CHANGELOG_md.erb", "code_generator/templates/default/Gemfile.erb", "code_generator/templates/default/Guardfile.erb", "code_generator/templates/default/README_md.erb", "code_generator/templates/default/Rakefile.erb", "code_generator/templates/default/_kitchen_yml.erb", "code_generator/templates/default/_rspec.erb", "code_generator/templates/default/_rubocop_yml.erb", "code_generator/templates/default/attributes_default_rb.erb", "code_generator/templates/default/metadata_rb.erb", "code_generator/templates/default/recipes_default_rb.erb", "code_generator/templates/default/spec_recipes_default_spec_rb.erb", "code_generator/templates/default/spec_spec_helper_rb.erb", "code_generator/templates/default/test_integration_default_serverspec_recipes_default_spec_rb.erb", "code_generator/templates/default/test_integration_default_serverspec_spec_helper_rb.erb", "lib/chef_gen/flavor/example.rb", "spec/lib/chef_gen/flavor/example_spec.rb", "spec/spec_helper.rb"]
15
+ s.files = [".rspec", ".rubocop.yml", ".travis.yml", "Gemfile", "Guardfile", "History.md", "LICENSE", "Manifest.txt", "README.md", "Rakefile", "chef-gen-flavor-example.gemspec", "code_generator/files/default/files_default_example_conf", "code_generator/files/default/templates_default_example_conf_erb", "code_generator/libraries/kitchen_helper.rb", "code_generator/metadata.rb", "code_generator/recipes/cookbook.rb", "code_generator/templates/default/Berksfile.erb", "code_generator/templates/default/CHANGELOG_md.erb", "code_generator/templates/default/Gemfile.erb", "code_generator/templates/default/Guardfile.erb", "code_generator/templates/default/README_md.erb", "code_generator/templates/default/Rakefile.erb", "code_generator/templates/default/_kitchen_yml.erb", "code_generator/templates/default/_rspec.erb", "code_generator/templates/default/_rubocop_yml.erb", "code_generator/templates/default/attributes_default_rb.erb", "code_generator/templates/default/metadata_rb.erb", "code_generator/templates/default/recipes_default_rb.erb", "code_generator/templates/default/spec_recipes_default_spec_rb.erb", "code_generator/templates/default/spec_spec_helper_rb.erb", "code_generator/templates/default/test_integration_default_serverspec_recipes_default_spec_rb.erb", "code_generator/templates/default/test_integration_default_serverspec_spec_helper_rb.erb", "features/generate.feature", "features/support/env.rb", "lib/chef_gen/flavor/example.rb", "spec/lib/chef_gen/flavor/example_spec.rb", "spec/spec_helper.rb"]
16
16
  s.homepage = "https://github.com/Nordstrom/chef-gen-flavor-example"
17
17
  s.licenses = ["apache2"]
18
18
  s.rdoc_options = ["--main", "README.md"]
@@ -23,7 +23,7 @@ Gem::Specification.new do |s|
23
23
  s.specification_version = 4
24
24
 
25
25
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
26
- s.add_runtime_dependency(%q<chef-gen-flavors>, ["~> 0.4"])
26
+ s.add_runtime_dependency(%q<chef-gen-flavors>, ["~> 0.5"])
27
27
  s.add_development_dependency(%q<rdoc>, ["~> 4.0"])
28
28
  s.add_development_dependency(%q<chef-dk>, ["~> 0.5"])
29
29
  s.add_development_dependency(%q<hoe>, ["~> 3.13"])
@@ -39,7 +39,7 @@ Gem::Specification.new do |s|
39
39
  s.add_development_dependency(%q<yard>, ["~> 0.8"])
40
40
  s.add_development_dependency(%q<aruba>, ["~> 0.6"])
41
41
  else
42
- s.add_dependency(%q<chef-gen-flavors>, ["~> 0.4"])
42
+ s.add_dependency(%q<chef-gen-flavors>, ["~> 0.5"])
43
43
  s.add_dependency(%q<rdoc>, ["~> 4.0"])
44
44
  s.add_dependency(%q<chef-dk>, ["~> 0.5"])
45
45
  s.add_dependency(%q<hoe>, ["~> 3.13"])
@@ -56,7 +56,7 @@ Gem::Specification.new do |s|
56
56
  s.add_dependency(%q<aruba>, ["~> 0.6"])
57
57
  end
58
58
  else
59
- s.add_dependency(%q<chef-gen-flavors>, ["~> 0.4"])
59
+ s.add_dependency(%q<chef-gen-flavors>, ["~> 0.5"])
60
60
  s.add_dependency(%q<rdoc>, ["~> 4.0"])
61
61
  s.add_dependency(%q<chef-dk>, ["~> 0.5"])
62
62
  s.add_dependency(%q<hoe>, ["~> 3.13"])
@@ -1,10 +1,10 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  group :development do
4
- gem 'rake', '~> 10.3'
5
- gem 'pry'
6
- gem 'pry-byebug'
7
- gem 'pry-rescue', '~> 1.3'
4
+ gem 'rake', '~> 10.4'
5
+ gem 'pry', '~> 0.10'
6
+ gem 'pry-byebug', '~> 3.1'
7
+ gem 'pry-rescue', '~> 1.4'
8
8
  gem 'pry-stack_explorer', '~> 0.4'
9
9
  end
10
10
 
@@ -1,6 +1,5 @@
1
1
  require 'foodcritic'
2
2
  require 'foodcritic/rake_task'
3
- require 'tailor/rake_task'
4
3
  require 'rspec/core/rake_task'
5
4
  require 'rubocop/rake_task'
6
5
  require 'kitchen/rake_tasks'
@@ -43,3 +42,11 @@ begin
43
42
  rescue LoadError
44
43
  puts 'test-kitchen initialization failed; disabling kitchen tasks'
45
44
  end
45
+
46
+ # test is an alias for testing all the things except kitchen
47
+ desc 'runs style and unit tests'
48
+ task test: [:style, :spec]
49
+
50
+ # default is to test everything
51
+ desc 'runs all tests'
52
+ task default: :test
@@ -15,8 +15,10 @@ driver_config:
15
15
 
16
16
  provisioner:
17
17
  name: chef_zero
18
+ <%% if proxy_vars.size > 0 %>
18
19
  client_rb:
19
20
  <%= kitchen_proxy_vars(4) %>
21
+ <%% end %>
20
22
 
21
23
  platforms:
22
24
  - name: ubuntu-14.04
@@ -3,15 +3,17 @@ require 'chefspec/berkshelf'
3
3
 
4
4
  # This file was generated by the `rspec --init` command. Conventionally, all
5
5
  # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
6
- # The generated `.rspec` file contains `--require spec_helper` which will cause this
7
- # file to always be loaded, without a need to explicitly require it in any files.
6
+ # The generated `.rspec` file contains `--require spec_helper` which will
7
+ # cause this file to always be loaded, without a need to explicitly require
8
+ # it in any files.
8
9
  #
9
10
  # Given that it is always loaded, you are encouraged to keep this file as
10
11
  # light-weight as possible. Requiring heavyweight dependencies from this file
11
- # will add to the boot time of your test suite on EVERY test run, even for an
12
- # individual file that may not need all of that loaded. Instead, consider making
13
- # a separate helper file that requires the additional dependencies and performs
14
- # the additional setup, and require it from the spec files that actually need it.
12
+ # will add to the boot time of your test suite on EVERY test run, even for
13
+ # an individual file that may not need all of that loaded. Instead, consider
14
+ # making a separate helper file that requires the additional dependencies
15
+ # and performs the additional setup, and require it from the spec files that
16
+ # actually need it.
15
17
  #
16
18
  # The `.rspec` file also contains a few flags that are not defaults but that
17
19
  # users commonly want.
@@ -50,8 +52,8 @@ RSpec.configure do |config|
50
52
  config.filter_run :focus
51
53
  config.run_all_when_everything_filtered = true
52
54
 
53
- # Limits the available syntax to the non-monkey patched syntax that is recommended.
54
- # For more details, see:
55
+ # Limits the available syntax to the non-monkey patched syntax that is
56
+ # recommended. For more details, see:
55
57
  # - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
56
58
  # - http://teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
57
59
  # - http://myronmars.to/n/dev-blog/2014/05/notable-changes-in-rspec-3#new__config_option_to_disable_rspeccore_monkey_patching
@@ -0,0 +1,84 @@
1
+ Feature: chef generate
2
+
3
+ Verifies that 'chef generate cookbook' works when the generator
4
+ path is dynamically chosen by chef-gen-flavors
5
+
6
+ Scenario: verify cookbook contents
7
+ Given a knife.rb that uses chef-gen-flavors
8
+ And I set the environment variables to:
9
+ | variable | value |
10
+ |----------------|---------|
11
+ | CHEFGEN_FLAVOR | example |
12
+ When I generate a cookbook named "foo"
13
+ Then the exit status should be 0
14
+ And I cd to "foo"
15
+ And the following files should exist:
16
+ | Guardfile |
17
+ | Rakefile |
18
+ | .rubocop.yml |
19
+ | spec/recipes/default_spec.rb |
20
+ | test/integration/default/serverspec/recipes/default_spec.rb |
21
+ And the following directories should exist:
22
+ | recipes |
23
+ | attributes |
24
+ And the file "README.md" should match /^# foo$/
25
+ And the file "README.md" should match /^Add 'recipe\[foo::default\]' to your node's run-list./
26
+
27
+ Scenario: verify that the rake tasks are available after generation
28
+ Given a knife.rb that uses chef-gen-flavors
29
+ And I set the environment variables to:
30
+ | variable | value |
31
+ |----------------|---------|
32
+ | CHEFGEN_FLAVOR | example |
33
+ When I generate a cookbook named "foo"
34
+ And I cd to "foo"
35
+ And I bundle gems
36
+ And I list the rake tasks
37
+ Then the exit status should be 0
38
+ And the output should match each of:
39
+ | ^rake foodcritic |
40
+ | ^rake rubocop |
41
+ | ^rake spec |
42
+ | ^rake kitchen:all |
43
+ | ^rake style |
44
+
45
+ Scenario: verify that the cookbook passes style checks after generation
46
+ Given a knife.rb that uses chef-gen-flavors
47
+ And I set the environment variables to:
48
+ | variable | value |
49
+ |----------------|---------|
50
+ | CHEFGEN_FLAVOR | example |
51
+ When I generate a cookbook named "foo"
52
+ And I cd to "foo"
53
+ And I bundle gems
54
+ And I run a style test
55
+ Then the exit status should be 0
56
+ And the output should match /no offenses detected$/
57
+
58
+ Scenario: verify that the cookbook passes unit tests after generation
59
+ Given a knife.rb that uses chef-gen-flavors
60
+ And I set the environment variables to:
61
+ | variable | value |
62
+ |----------------|---------|
63
+ | CHEFGEN_FLAVOR | example |
64
+ When I generate a cookbook named "foo"
65
+ And I cd to "foo"
66
+ And I bundle gems
67
+ And I run a unit test
68
+ Then the exit status should be 0
69
+ And the output should match /0 failures$/
70
+
71
+ Scenario: verify that the kitchen suites can be listed
72
+ Given a knife.rb that uses chef-gen-flavors
73
+ And I set the environment variables to:
74
+ | variable | value |
75
+ |----------------|---------|
76
+ | CHEFGEN_FLAVOR | example |
77
+ When I generate a cookbook named "foo"
78
+ And I cd to "foo"
79
+ And I bundle gems
80
+ And I list the kitchen suites
81
+ Then the exit status should be 0
82
+ And the output should match each of:
83
+ | ^default-ubuntu-1404 |
84
+ | ^default-centos-66 |
@@ -0,0 +1,15 @@
1
+ if ENV['COVERAGE']
2
+ require 'simplecov'
3
+ end
4
+
5
+ require 'aruba/cucumber'
6
+ require 'chef_gen/flavors/cucumber'
7
+
8
+ # Travis runs tests in a limited environment which can take a long time to invoke
9
+ # commands. Up the timeout when we're in a travis build based on the environment
10
+ # variable set in .travis.yml
11
+ if ENV['TRAVIS_BUILD']
12
+ Before do
13
+ @aruba_timeout_seconds = 15
14
+ end
15
+ end
@@ -19,7 +19,7 @@ module ChefGen
19
19
  include ChefGen::Snippet::ExampleTemplate
20
20
 
21
21
  # the version of the gem
22
- VERSION = '0.3.0'
22
+ VERSION = '0.4.0'
23
23
 
24
24
  class << self
25
25
  # :nocov:
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chef-gen-flavor-example
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - James FitzGibbon
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-05-15 00:00:00.000000000 Z
11
+ date: 2015-05-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: chef-gen-flavors
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '0.4'
19
+ version: '0.5'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '0.4'
26
+ version: '0.5'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rdoc
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -225,8 +225,8 @@ description: |-
225
225
 
226
226
  This plugin makes use of most of the snippets available, and is meant as a
227
227
  reference implementation than for actual use. It demonstrates how to create
228
- a template plugin with tests and serve as a good example of how to get
229
- started writing your own templates for distribution.
228
+ a flavor with tests and serves as a good example of how to get
229
+ started writing your own flavors for distribution.
230
230
  email:
231
231
  - james.i.fitzgibbon@nordstrom.com
232
232
  executables: []
@@ -240,7 +240,6 @@ files:
240
240
  - ".rubocop.yml"
241
241
  - ".travis.yml"
242
242
  - Gemfile
243
- - Gemfile.lock
244
243
  - Guardfile
245
244
  - History.md
246
245
  - LICENSE
@@ -269,6 +268,8 @@ files:
269
268
  - code_generator/templates/default/spec_spec_helper_rb.erb
270
269
  - code_generator/templates/default/test_integration_default_serverspec_recipes_default_spec_rb.erb
271
270
  - code_generator/templates/default/test_integration_default_serverspec_spec_helper_rb.erb
271
+ - features/generate.feature
272
+ - features/support/env.rb
272
273
  - lib/chef_gen/flavor/example.rb
273
274
  - spec/lib/chef_gen/flavor/example_spec.rb
274
275
  - spec/spec_helper.rb
@@ -1,263 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- chef-gen-flavor-example (0.3.0.20150515152333)
5
- chef-gen-flavors (~> 0.4)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- aruba (0.6.2)
11
- childprocess (>= 0.3.6)
12
- cucumber (>= 1.1.1)
13
- rspec-expectations (>= 2.7.0)
14
- ast (2.0.0)
15
- astrolabe (1.3.0)
16
- parser (>= 2.2.0.pre.3, < 3.0)
17
- bogo (0.1.22)
18
- hashie
19
- multi_json
20
- bogo-ui (0.1.10)
21
- bogo
22
- command_line_reporter
23
- paint
24
- builder (3.2.2)
25
- celluloid (0.16.0)
26
- timers (~> 4.0.0)
27
- chef (12.3.0)
28
- chef-zero (~> 4.1)
29
- diff-lcs (~> 1.2, >= 1.2.4)
30
- erubis (~> 2.7)
31
- ffi-yajl (>= 1.2, < 3.0)
32
- highline (~> 1.6, >= 1.6.9)
33
- mixlib-authentication (~> 1.3)
34
- mixlib-cli (~> 1.4)
35
- mixlib-config (~> 2.0)
36
- mixlib-log (~> 1.3)
37
- mixlib-shellout (>= 2.0.0.rc.0, < 3.0)
38
- net-ssh (~> 2.6)
39
- net-ssh-multi (~> 1.1)
40
- ohai (~> 8.0)
41
- plist (~> 3.1.0)
42
- pry (~> 0.9)
43
- rspec-core (~> 3.2)
44
- rspec-expectations (~> 3.2)
45
- rspec-mocks (~> 3.2)
46
- rspec_junit_formatter (~> 0.2.0)
47
- serverspec (~> 2.7)
48
- specinfra (~> 2.10)
49
- chef-dk (0.5.0)
50
- chef (~> 12.0, >= 12.2.1)
51
- cookbook-omnifetch (~> 0.2)
52
- diff-lcs (~> 1.0)
53
- ffi-yajl (~> 1.0)
54
- mixlib-cli (~> 1.5)
55
- mixlib-shellout (>= 2.0.0.rc.0, < 3.0.0)
56
- paint (~> 1.0)
57
- solve (~> 1.2)
58
- chef-gen-flavors (0.4.0)
59
- bogo-ui (~> 0.1)
60
- little-plugger (~> 1.1)
61
- chef-zero (4.2.1)
62
- ffi-yajl (>= 1.1, < 3.0)
63
- hashie (~> 2.0)
64
- mixlib-log (~> 1.3)
65
- rack
66
- uuidtools (~> 2.1)
67
- childprocess (0.5.6)
68
- ffi (~> 1.0, >= 1.0.11)
69
- coderay (1.1.0)
70
- colored (1.2)
71
- colorize (0.7.7)
72
- command_line_reporter (3.3.5)
73
- colored (>= 1.2)
74
- cookbook-omnifetch (0.2.1)
75
- minitar (~> 0.5.4)
76
- cucumber (2.0.0)
77
- builder (>= 2.1.2)
78
- cucumber-core (~> 1.1.3)
79
- diff-lcs (>= 1.1.3)
80
- gherkin (~> 2.12)
81
- multi_json (>= 1.7.5, < 2.0)
82
- multi_test (>= 0.1.2)
83
- cucumber-core (1.1.3)
84
- gherkin (~> 2.12.0)
85
- dep-selector-libgecode (1.0.2)
86
- dep_selector (1.0.3)
87
- dep-selector-libgecode (~> 1.0)
88
- ffi (~> 1.9)
89
- diff-lcs (1.2.5)
90
- docile (1.1.5)
91
- erubis (2.7.0)
92
- ffi (1.9.8)
93
- ffi-yajl (1.4.0)
94
- ffi (~> 1.5)
95
- libyajl2 (~> 1.2)
96
- formatador (0.2.5)
97
- gherkin (2.12.2)
98
- multi_json (~> 1.3)
99
- guard (2.12.5)
100
- formatador (>= 0.2.4)
101
- listen (~> 2.7)
102
- lumberjack (~> 1.0)
103
- nenv (~> 0.1)
104
- notiffany (~> 0.0)
105
- pry (>= 0.9.12)
106
- shellany (~> 0.0)
107
- thor (>= 0.18.1)
108
- guard-compat (1.2.1)
109
- guard-rake (0.0.10)
110
- guard
111
- rake
112
- guard-rspec (4.5.0)
113
- guard (~> 2.1)
114
- guard-compat (~> 1.1)
115
- rspec (>= 2.99.0, < 4.0)
116
- guard-rubocop (1.2.0)
117
- guard (~> 2.0)
118
- rubocop (~> 0.20)
119
- hashie (2.1.2)
120
- highline (1.7.2)
121
- hirb (0.7.3)
122
- hitimes (1.2.2)
123
- hoe (3.13.1)
124
- rake (>= 0.8, < 11.0)
125
- hoe-gemspec (1.0.0)
126
- hoe (>= 2.2.0)
127
- ipaddress (0.8.0)
128
- json (1.8.2)
129
- libyajl2 (1.2.0)
130
- listen (2.10.0)
131
- celluloid (~> 0.16.0)
132
- rb-fsevent (>= 0.9.3)
133
- rb-inotify (>= 0.9)
134
- little-plugger (1.1.3)
135
- lumberjack (1.0.9)
136
- method_source (0.8.2)
137
- mime-types (2.5)
138
- minitar (0.5.4)
139
- mixlib-authentication (1.3.0)
140
- mixlib-log
141
- mixlib-cli (1.5.0)
142
- mixlib-config (2.2.0)
143
- mixlib-log (1.6.0)
144
- mixlib-shellout (2.0.1)
145
- multi_json (1.11.0)
146
- multi_test (0.1.2)
147
- nenv (0.2.0)
148
- net-scp (1.2.1)
149
- net-ssh (>= 2.6.5)
150
- net-ssh (2.9.2)
151
- net-ssh-gateway (1.2.0)
152
- net-ssh (>= 2.6.5)
153
- net-ssh-multi (1.2.1)
154
- net-ssh (>= 2.6.5)
155
- net-ssh-gateway (>= 1.2.0)
156
- notiffany (0.0.6)
157
- nenv (~> 0.1)
158
- shellany (~> 0.0)
159
- ohai (8.3.0)
160
- ffi (~> 1.9)
161
- ffi-yajl (>= 1.1, < 3.0)
162
- ipaddress
163
- mime-types (~> 2.0)
164
- mixlib-cli
165
- mixlib-config (~> 2.0)
166
- mixlib-log
167
- mixlib-shellout (~> 2.0)
168
- rake (~> 10.1)
169
- systemu (~> 2.6.4)
170
- wmi-lite (~> 1.0)
171
- paint (1.0.0)
172
- parser (2.2.2.2)
173
- ast (>= 1.1, < 3.0)
174
- plist (3.1.0)
175
- powerpack (0.1.1)
176
- pry (0.10.1)
177
- coderay (~> 1.1.0)
178
- method_source (~> 0.8.1)
179
- slop (~> 3.4)
180
- rack (1.6.1)
181
- rainbow (2.0.0)
182
- rake (10.4.2)
183
- rb-fsevent (0.9.4)
184
- rb-inotify (0.9.5)
185
- ffi (>= 0.5.0)
186
- rdoc (4.2.0)
187
- json (~> 1.4)
188
- rspec (3.2.0)
189
- rspec-core (~> 3.2.0)
190
- rspec-expectations (~> 3.2.0)
191
- rspec-mocks (~> 3.2.0)
192
- rspec-core (3.2.3)
193
- rspec-support (~> 3.2.0)
194
- rspec-expectations (3.2.1)
195
- diff-lcs (>= 1.2.0, < 2.0)
196
- rspec-support (~> 3.2.0)
197
- rspec-its (1.2.0)
198
- rspec-core (>= 3.0.0)
199
- rspec-expectations (>= 3.0.0)
200
- rspec-mocks (3.2.1)
201
- diff-lcs (>= 1.2.0, < 2.0)
202
- rspec-support (~> 3.2.0)
203
- rspec-support (3.2.2)
204
- rspec_junit_formatter (0.2.2)
205
- builder (< 4)
206
- rspec-core (>= 2, < 4, != 2.12.0)
207
- rubocop (0.31.0)
208
- astrolabe (~> 1.3)
209
- parser (>= 2.2.2.1, < 3.0)
210
- powerpack (~> 0.1)
211
- rainbow (>= 1.99.1, < 3.0)
212
- ruby-progressbar (~> 1.4)
213
- ruby-progressbar (1.7.5)
214
- semverse (1.2.1)
215
- serverspec (2.16.0)
216
- multi_json
217
- rspec (~> 3.0)
218
- rspec-its
219
- specinfra (~> 2.31)
220
- shellany (0.0.1)
221
- simplecov (0.10.0)
222
- docile (~> 1.1.0)
223
- json (~> 1.8)
224
- simplecov-html (~> 0.10.0)
225
- simplecov-console (0.2.0)
226
- colorize
227
- hirb
228
- simplecov
229
- simplecov-html (0.10.0)
230
- slop (3.6.0)
231
- solve (1.2.1)
232
- dep_selector (~> 1.0)
233
- semverse (~> 1.1)
234
- specinfra (2.31.1)
235
- net-scp
236
- net-ssh
237
- systemu (2.6.5)
238
- thor (0.19.1)
239
- timers (4.0.1)
240
- hitimes
241
- uuidtools (2.1.5)
242
- wmi-lite (1.0.0)
243
- yard (0.8.7.6)
244
-
245
- PLATFORMS
246
- ruby
247
-
248
- DEPENDENCIES
249
- aruba (~> 0.6)
250
- chef-dk (~> 0.5)
251
- chef-gen-flavor-example!
252
- guard (~> 2.12)
253
- guard-rake (~> 0.0)
254
- guard-rspec (~> 4.2)
255
- guard-rubocop (~> 1.2)
256
- hoe (~> 3.13)
257
- hoe-gemspec (~> 1.0)
258
- rake (~> 10.3)
259
- rdoc (~> 4.0)
260
- rspec (~> 3.1)
261
- simplecov (~> 0.9)
262
- simplecov-console (~> 0.2)
263
- yard (~> 0.8)