chef-handler-datadog 0.12.1 → 0.15.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.
Files changed (55) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +158 -0
  3. data/.gitignore +0 -1
  4. data/.rubocop.yml +5 -0
  5. data/CHANGELOG.md +33 -0
  6. data/CONTRIBUTING.md +14 -0
  7. data/Gemfile +1 -0
  8. data/Gemfile.lock +296 -0
  9. data/README.md +1 -3
  10. data/chef-handler-datadog.gemspec +10 -10
  11. data/lib/chef/handler/datadog.rb +18 -13
  12. data/lib/chef/handler/datadog_chef_events.rb +3 -0
  13. data/lib/chef/handler/datadog_chef_tags.rb +2 -1
  14. data/lib/chef_handler_datadog.rb +1 -1
  15. data/spec/datadog_spec.rb +216 -166
  16. data/spec/support/cassettes/Chef_Handler_Datadog/failed_Chef_run/sets_alert_handles_when_specified.yml +239 -181
  17. data/spec/support/cassettes/Chef_Handler_Datadog/failed_Chef_run/sets_event_title_correctly.yml +119 -90
  18. data/spec/support/cassettes/Chef_Handler_Datadog/failed_Chef_run/sets_priority_correctly.yml +119 -90
  19. data/spec/support/cassettes/Chef_Handler_Datadog/hostname/uses_the_node_name_when_no_config_specified.yml +119 -89
  20. data/spec/support/cassettes/Chef_Handler_Datadog/hostname/uses_the_specified_hostname_when_provided.yml +119 -89
  21. data/spec/support/cassettes/Chef_Handler_Datadog/reports_correct_hostname_on_an_ec2_node/does_not_use_the_instance_id_when_config_specified_to_false.yml +119 -89
  22. data/spec/support/cassettes/Chef_Handler_Datadog/reports_correct_hostname_on_an_ec2_node/uses_the_instance_id_when_config_is_specified.yml +119 -89
  23. data/spec/support/cassettes/Chef_Handler_Datadog/reports_correct_hostname_on_an_ec2_node/uses_the_instance_id_when_no_config_specified.yml +119 -89
  24. data/spec/support/cassettes/Chef_Handler_Datadog/reports_metrics_event_and_sets_tags/emits_events/posts_an_event.yml +119 -89
  25. data/spec/support/cassettes/Chef_Handler_Datadog/reports_metrics_event_and_sets_tags/emits_events/sets_priority_correctly.yml +119 -89
  26. data/spec/support/cassettes/Chef_Handler_Datadog/reports_metrics_event_and_sets_tags/emits_metrics/reports_metrics.yml +119 -89
  27. data/spec/support/cassettes/Chef_Handler_Datadog/reports_metrics_event_and_sets_tags/sets_tags/puts_the_tags_for_the_current_node.yml +119 -89
  28. data/spec/support/cassettes/Chef_Handler_Datadog/resources/failure_during_compile_phase/only_emits_the_run_status_metrics.yml +74 -56
  29. data/spec/support/cassettes/Chef_Handler_Datadog/resources/failure_during_compile_phase/posts_an_event.yml +74 -56
  30. data/spec/support/cassettes/Chef_Handler_Datadog/resources/failure_during_compile_phase_with_an_elapsed_time_and_incomplete_resource_collection/only_emits_the_run_status_metrics.yml +73 -55
  31. data/spec/support/cassettes/Chef_Handler_Datadog/resources/failure_during_compile_phase_with_an_elapsed_time_and_incomplete_resource_collection/posts_an_event.yml +73 -55
  32. data/spec/support/cassettes/Chef_Handler_Datadog/tags/when_policy_tags_are_enabled/sets_the_policy_name_and_policy_group_tags.yml +120 -90
  33. data/spec/support/cassettes/Chef_Handler_Datadog/tags/when_policy_tags_are_not_enabled/does_not_set_the_policy_name_and_policy_group_tags.yml +111 -81
  34. data/spec/support/cassettes/Chef_Handler_Datadog/tags/when_specified/allows_for_empty_scope_prefix.yml +119 -90
  35. data/spec/support/cassettes/Chef_Handler_Datadog/tags/when_specified/allows_for_empty_tag_prefix.yml +117 -127
  36. data/spec/support/cassettes/Chef_Handler_Datadog/tags/when_specified/allows_for_user-specified_scope_prefix.yml +119 -90
  37. data/spec/support/cassettes/Chef_Handler_Datadog/tags/when_specified/allows_for_user-specified_tag_prefix.yml +121 -92
  38. data/spec/support/cassettes/Chef_Handler_Datadog/tags/when_specified/sets_the_role_and_env_and_tags.yml +119 -90
  39. data/spec/support/cassettes/Chef_Handler_Datadog/tags/when_tag_blacklist_is_specified/does_not_include_the_tag_s_specified.yml +118 -88
  40. data/spec/support/cassettes/Chef_Handler_Datadog/tags/when_tag_blacklist_is_unspecified/should_include_all_of_the_tag_s_.yml +118 -88
  41. data/spec/support/cassettes/Chef_Handler_Datadog/tags/when_unspecified/sets_role_env_and_nothing_else.yml +119 -90
  42. data/spec/support/cassettes/Chef_Handler_Datadog/tags_submission_retries/when_not_specified/does_not_retry_after_a_failed_submission.yml +112 -124
  43. data/spec/support/cassettes/Chef_Handler_Datadog/tags_submission_retries/when_specified_as_2_retries/retries_no_more_than_twice.yml +108 -210
  44. data/spec/support/cassettes/Chef_Handler_Datadog/tags_submission_retries/when_specified_as_2_retries/stops_retrying_once_submission_is_successful.yml +110 -168
  45. data/spec/support/cassettes/Chef_Handler_Datadog/updated_resources/posts_an_event.yml +119 -89
  46. metadata +13 -24
  47. data/.travis.yml +0 -34
  48. data/gemfiles/chef_12.7.gemfile +0 -16
  49. data/gemfiles/chef_12.gemfile +0 -16
  50. data/gemfiles/chef_13.gemfile +0 -16
  51. data/gemfiles/chef_14.gemfile +0 -16
  52. data/spec/support/cassettes/Chef_Handler_Datadog/handles_no_application_key/fails_when_no_application_key_is_provided.yml +0 -143
  53. data/spec/support/cassettes/Chef_Handler_Datadog/when_reporting_to_multiple_endpoints/emits_events/posts_an_event.yml +0 -575
  54. data/spec/support/cassettes/Chef_Handler_Datadog/when_reporting_to_multiple_endpoints/emits_metrics/reports_metrics.yml +0 -575
  55. data/spec/support/cassettes/Chef_Handler_Datadog/when_reporting_to_multiple_endpoints/sets_tags/puts_the_tags_for_the_current_node.yml +0 -575
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 26dd78bfdbd6e79d3544943a1bf0030c3d8636328da7dc666cb4963f4aee498b
4
- data.tar.gz: a78ec6092d2cb6b5d50e8271ae227b810e214f1430cc498d2cdb9e4aee317b48
3
+ metadata.gz: 6c32c1f06c76260e05badf2dedfee051408ae3100d190f8dab77dabd7f296876
4
+ data.tar.gz: 80a715b2910eb6ff4aefd6a12c341fd2984ce76890741432b9d78b256649a797
5
5
  SHA512:
6
- metadata.gz: ca5d68347a7e8f2bff5d7e973421558a72e910a86dbfcb88bd08d3888e00e6135982df39eb51927e312a444c7a9cdd4797c7f121625963b2a9c45ef0707880b1
7
- data.tar.gz: 688cc56577e5097111fc309a4e74e6814ae5cb1fca8ddedc1ea2fd49cefb01d6d14ee2ea205b6de254eee145e705eae2ff22fabed30b4faa534a2f89f589c19f
6
+ metadata.gz: edc1cae87e010dbd41869d6b81228e25ee8c16a632dcc28ccd94860d98e02f4964a32afda0d25ec4aa89d9fd3a55bf409570811e3509fe57e72cb6425ba2e65d
7
+ data.tar.gz: c622db9bbb874330be12384645f319b882011dfcb93c264c000a49a5e3ed260bd7599c27938c591bc71c29c50c5cf28babbe6872fe44de70e482330956dc8037
@@ -0,0 +1,158 @@
1
+ version: 2
2
+ jobs:
3
+ ### Chef 12.0
4
+ specs-ruby23-chef-120: &specs
5
+ machine: true
6
+ environment:
7
+ API_KEY: somefakeapikey
8
+ APPLICATION_KEY: somefakeapplicationkey
9
+ CHEF_VERSION: '12.0'
10
+ RUBY_VERSION: '2.3.8'
11
+ steps:
12
+ - checkout
13
+ - run:
14
+ name: Install Ruby versions
15
+ command: rvm install $RUBY_VERSION
16
+ - run:
17
+ name: Install bundler
18
+ command: rvm $RUBY_VERSION --verbose do gem install bundler:1.17.3
19
+ - run:
20
+ name: Install gem dependencies
21
+ command: rm Gemfile.lock && rvm $RUBY_VERSION --verbose do bundle install --path .bundle
22
+ - run:
23
+ name: Run tests
24
+ command: rvm $RUBY_VERSION --verbose do bundle exec rake
25
+
26
+ specs-ruby24-chef-120:
27
+ <<: *specs
28
+ environment:
29
+ API_KEY: somefakeapikey
30
+ APPLICATION_KEY: somefakeapplicationkey
31
+ CHEF_VERSION: '12.0'
32
+ RUBY_VERSION: '2.4.9'
33
+
34
+ specs-ruby25-chef-120:
35
+ <<: *specs
36
+ environment:
37
+ API_KEY: somefakeapikey
38
+ APPLICATION_KEY: somefakeapplicationkey
39
+ CHEF_VERSION: '12.0'
40
+ RUBY_VERSION: '2.5.1'
41
+
42
+ ### Chef 12.7
43
+ specs-ruby23-chef-127:
44
+ <<: *specs
45
+ environment:
46
+ API_KEY: somefakeapikey
47
+ APPLICATION_KEY: somefakeapplicationkey
48
+ CHEF_VERSION: '12.7.0'
49
+ RUBY_VERSION: '2.3.8'
50
+
51
+ specs-ruby24-chef-127:
52
+ <<: *specs
53
+ environment:
54
+ API_KEY: somefakeapikey
55
+ APPLICATION_KEY: somefakeapplicationkey
56
+ CHEF_VERSION: '12.7.0'
57
+ RUBY_VERSION: '2.4.9'
58
+
59
+ specs-ruby25-chef-127:
60
+ <<: *specs
61
+ environment:
62
+ API_KEY: somefakeapikey
63
+ APPLICATION_KEY: somefakeapplicationkey
64
+ CHEF_VERSION: '12.7.0'
65
+ RUBY_VERSION: '2.5.1'
66
+
67
+ ### Chef 13
68
+ specs-ruby23-chef-130:
69
+ <<: *specs
70
+ environment:
71
+ API_KEY: somefakeapikey
72
+ APPLICATION_KEY: somefakeapplicationkey
73
+ CHEF_VERSION: '13.0'
74
+ RUBY_VERSION: '2.3.8'
75
+
76
+ specs-ruby24-chef-130:
77
+ <<: *specs
78
+ environment:
79
+ API_KEY: somefakeapikey
80
+ APPLICATION_KEY: somefakeapplicationkey
81
+ CHEF_VERSION: '13.0'
82
+ RUBY_VERSION: '2.4.9'
83
+
84
+ specs-ruby25-chef-130:
85
+ <<: *specs
86
+ environment:
87
+ API_KEY: somefakeapikey
88
+ APPLICATION_KEY: somefakeapplicationkey
89
+ CHEF_VERSION: '13.0'
90
+ RUBY_VERSION: '2.5.1'
91
+
92
+ ### Chef 14
93
+ # Chef 14 depends on ruby >= 2.4
94
+ #
95
+ # specs-ruby23-chef-140:
96
+ # <<: *specs
97
+ # environment:
98
+ # API_KEY: somefakeapikey
99
+ # APPLICATION_KEY: somefakeapplicationkey
100
+ # CHEF_VERSION: '14.0'
101
+ # RUBY_VERSION: '2.3.8'
102
+
103
+ specs-ruby24-chef-140:
104
+ <<: *specs
105
+ environment:
106
+ API_KEY: somefakeapikey
107
+ APPLICATION_KEY: somefakeapplicationkey
108
+ CHEF_VERSION: '14.0'
109
+ RUBY_VERSION: '2.4.9'
110
+
111
+ specs-ruby25-chef-140:
112
+ <<: *specs
113
+ environment:
114
+ API_KEY: somefakeapikey
115
+ APPLICATION_KEY: somefakeapplicationkey
116
+ CHEF_VERSION: '14.0'
117
+ RUBY_VERSION: '2.5.1'
118
+
119
+ verify-gemfile.lock-dependencies:
120
+ machine: true
121
+ environment:
122
+ API_KEY: somefakeapikey
123
+ APPLICATION_KEY: somefakeapplicationkey
124
+ RUBY_VERSION: '2.5.1'
125
+ steps:
126
+ - checkout
127
+ - run:
128
+ name: Install Ruby versions
129
+ command: rvm install $RUBY_VERSION
130
+ - run:
131
+ name: Install bundler
132
+ command: rvm $RUBY_VERSION --verbose do gem install bundler:1.17.3
133
+ - run:
134
+ name: Install gem dependencies
135
+ command: rvm $RUBY_VERSION --verbose do bundle install --path .bundle
136
+ - run:
137
+ name: Run tests
138
+ command: rvm $RUBY_VERSION --verbose do bundle exec rake
139
+
140
+ workflows:
141
+ version: 2
142
+ build_and_test:
143
+ jobs:
144
+ - specs-ruby23-chef-120
145
+ - specs-ruby24-chef-120
146
+ - specs-ruby25-chef-120
147
+
148
+ - specs-ruby23-chef-127
149
+ - specs-ruby24-chef-127
150
+ - specs-ruby25-chef-127
151
+
152
+ - specs-ruby23-chef-130
153
+ - specs-ruby24-chef-130
154
+ - specs-ruby25-chef-130
155
+
156
+ - specs-ruby24-chef-140
157
+ - specs-ruby25-chef-140
158
+ - verify-gemfile.lock-dependencies
data/.gitignore CHANGED
@@ -49,7 +49,6 @@ pkg
49
49
 
50
50
  json
51
51
  rake
52
- Gemfile.lock
53
52
 
54
53
  # For Ruby Managers:
55
54
  .ruby-gemset
@@ -8,6 +8,11 @@ AllCops:
8
8
  - 'spec/*.rb'
9
9
  - '*/vendor/**/*'
10
10
 
11
+ # Remove RequiredRubyVersion check, it necessarily fails in CI as we test
12
+ # with different ruby versions.
13
+ Gemspec/RequiredRubyVersion:
14
+ Enabled: false
15
+
11
16
  # 80 characters is a nice goal, but not worth currently changing in existing
12
17
  # code for the sake of changing it to conform to a length set in 1928 (IBM).
13
18
  Metrics/LineLength:
@@ -1,6 +1,29 @@
1
1
  Changes
2
2
  =======
3
3
 
4
+ # 0.15.0 / 2020-12-10
5
+
6
+ * [FEATURE] Allow skipping SSL verification [#130][]
7
+
8
+ # 0.14.0 / 2020-11-09
9
+
10
+ * [MISC] Update dogapi gem dependency from 1.38 to 1.42. [#124][]
11
+ * [MISC] Update rack gem dependency from 2.0.8 to 2.2.3. [#123][]
12
+
13
+ # 0.13.0 / 2020-01-10
14
+
15
+ * [MISC] Update dogapi gem version constraint and fix tests. [#119][]
16
+ * [MISC] Use a single test Gemfile. [#117][]
17
+ * [MISC] Move tests to CircleCI. [#116][]
18
+
19
+ # 0.12.3 / 2019-11-19
20
+
21
+ * [FEATURE] Use `api_url` to send Chef related data to extra endpoints. [#113][] [@Azoam][]
22
+
23
+ # 0.12.2 / 2019-10-23
24
+
25
+ * [OPTIMIZE] Rescue all errors when sending/emitting from the handler. [#98][] [@borgstrom][]
26
+
4
27
  # 0.12.1 / 2019-09-30
5
28
 
6
29
  * [BUGFIX] Fix standard error rescue in metrics sender. [#109][] [@rmoriz][]
@@ -122,17 +145,27 @@ And all other versions were prior to this. See git history for more.
122
145
  [#93]: https://github.com/DataDog/chef-handler-datadog/issues/93
123
146
  [#96]: https://github.com/DataDog/chef-handler-datadog/issues/96
124
147
  [#97]: https://github.com/DataDog/chef-handler-datadog/issues/97
148
+ [#98]: https://github.com/DataDog/chef-handler-datadog/issues/98
125
149
  [#101]: https://github.com/DataDog/chef-handler-datadog/issues/101
126
150
  [#102]: https://github.com/DataDog/chef-handler-datadog/issues/102
127
151
  [#103]: https://github.com/DataDog/chef-handler-datadog/issues/103
128
152
  [#104]: https://github.com/DataDog/chef-handler-datadog/issues/104
129
153
  [#109]: https://github.com/DataDog/chef-handler-datadog/issues/109
154
+ [#113]: https://github.com/DataDog/chef-handler-datadog/issues/113
155
+ [#116]: https://github.com/DataDog/chef-handler-datadog/issues/116
156
+ [#117]: https://github.com/DataDog/chef-handler-datadog/issues/117
157
+ [#119]: https://github.com/DataDog/chef-handler-datadog/issues/119
158
+ [#123]: https://github.com/DataDog/chef-handler-datadog/issues/123
159
+ [#124]: https://github.com/DataDog/chef-handler-datadog/issues/124
160
+ [#130]: https://github.com/DataDog/chef-handler-datadog/issues/130
130
161
  [@ABrehm264]: https://github.com/ABrehm264
162
+ [@Azoam]: https://github.com/Azoam
131
163
  [@DanielMuller]: https://github.com/DanielMuller
132
164
  [@DanielRedOak]: https://github.com/DanielRedOak
133
165
  [@alq]: https://github.com/alq
134
166
  [@andrewjamesbrown]: https://github.com/andrewjamesbrown
135
167
  [@bigbam505]: https://github.com/bigbam505
168
+ [@borgstrom]: https://github.com/borgstrom
136
169
  [@datwiz]: https://github.com/datwiz
137
170
  [@david-ds]: https://github.com/david-ds
138
171
  [@degemer]: https://github.com/degemer
@@ -21,3 +21,17 @@ If you'd like to run the test suite, fix a bug or add a feature, please follow t
21
21
  * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
22
22
  * Please try not to mess with the `Rakefile`, version, or history.
23
23
  If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
24
+
25
+
26
+ ## Building and using local snapshots
27
+
28
+ Sometimes you need to test chef-handler-datadog before a fix is merged. In this case you need to:
29
+
30
+ * Set the version in `lib/chef_handler_datadog.rb`
31
+ If the current version is `0.11.0` then you should bump to `0.11.1.pre`.
32
+ This way when the next version is released it will take precedence over your snapshot.
33
+ * Run `rake build`, this will create the .gem file in the `pkg/` dir
34
+ * Copy the .gem file to your own gem server
35
+ * When you include `datadog::dd-handler` in your Chef runlist set `node.override['datadog']['gem_server']` to your gem server URL and `node.override['datadog']['chef_handler_version']` to your `.pre` version.
36
+ * Chef will install your version of the gem
37
+ * Don't forget to unset `gem_server` and `chef_handler_version` once the handler has been released with your changes
data/Gemfile CHANGED
@@ -6,6 +6,7 @@ source 'http://rubygems.org'
6
6
  gemspec
7
7
 
8
8
  group :localdev do
9
+ gem 'chef', "~> #{ENV.fetch('CHEF_VERSION', '15.0')}"
9
10
  gem 'guard'
10
11
  gem 'guard-rspec'
11
12
  gem 'guard-rubocop'
@@ -0,0 +1,296 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ chef-handler-datadog (0.13.0)
5
+ dogapi (~> 1.42.0)
6
+
7
+ GEM
8
+ remote: http://rubygems.org/
9
+ specs:
10
+ addressable (2.7.0)
11
+ public_suffix (>= 2.0.2, < 5.0)
12
+ appraisal (2.0.2)
13
+ bundler
14
+ rake
15
+ thor (>= 0.14.0)
16
+ ast (2.4.0)
17
+ bcrypt_pbkdf (1.0.1)
18
+ builder (3.2.4)
19
+ chef (15.6.10)
20
+ addressable
21
+ bcrypt_pbkdf (~> 1.0)
22
+ bundler (>= 1.10)
23
+ chef-config (= 15.6.10)
24
+ chef-utils (= 15.6.10)
25
+ chef-zero (>= 14.0.11)
26
+ diff-lcs (~> 1.2, >= 1.2.4)
27
+ ed25519 (~> 1.2)
28
+ erubis (~> 2.7)
29
+ ffi (~> 1.9, >= 1.9.25)
30
+ ffi-libarchive
31
+ ffi-yajl (~> 2.2)
32
+ highline (>= 1.6.9, < 2)
33
+ iniparse (~> 1.4)
34
+ license-acceptance (~> 1.0, >= 1.0.5)
35
+ mixlib-archive (>= 0.4, < 2.0)
36
+ mixlib-authentication (>= 2.1, < 4)
37
+ mixlib-cli (>= 2.1.1, < 3.0)
38
+ mixlib-log (>= 2.0.3, < 4.0)
39
+ mixlib-shellout (>= 3.0.3, < 4.0)
40
+ net-sftp (~> 2.1, >= 2.1.2)
41
+ net-ssh (>= 4.2, < 6)
42
+ net-ssh-multi (~> 1.2, >= 1.2.1)
43
+ ohai (~> 15.0)
44
+ plist (~> 3.2)
45
+ proxifier (~> 1.0)
46
+ syslog-logger (~> 1.6)
47
+ train-core (~> 3.1)
48
+ train-winrm (>= 0.2.5)
49
+ tty-screen (~> 0.6)
50
+ uuidtools (~> 2.1.5)
51
+ chef-config (15.6.10)
52
+ addressable
53
+ chef-utils (= 15.6.10)
54
+ fuzzyurl
55
+ mixlib-config (>= 2.2.12, < 4.0)
56
+ mixlib-shellout (>= 2.0, < 4.0)
57
+ tomlrb (~> 1.2)
58
+ chef-utils (15.6.10)
59
+ chef-zero (14.0.17)
60
+ ffi-yajl (~> 2.2)
61
+ hashie (>= 2.0, < 4.0)
62
+ mixlib-log (>= 2.0, < 4.0)
63
+ rack (~> 2.0, >= 2.0.6)
64
+ uuidtools (~> 2.1)
65
+ coderay (1.1.2)
66
+ crack (0.4.3)
67
+ safe_yaml (~> 1.0.0)
68
+ diff-lcs (1.3)
69
+ docile (1.3.2)
70
+ dogapi (1.42.0)
71
+ multi_json
72
+ dotenv (2.7.5)
73
+ ed25519 (1.2.4)
74
+ equatable (0.6.1)
75
+ erubi (1.9.0)
76
+ erubis (2.7.0)
77
+ ffi (1.11.3)
78
+ ffi-libarchive (1.0.0)
79
+ ffi (~> 1.0)
80
+ ffi-yajl (2.3.3)
81
+ libyajl2 (~> 1.2)
82
+ formatador (0.2.5)
83
+ fuzzyurl (0.9.0)
84
+ gssapi (1.3.0)
85
+ ffi (>= 1.0.1)
86
+ guard (2.16.1)
87
+ formatador (>= 0.2.4)
88
+ listen (>= 2.7, < 4.0)
89
+ lumberjack (>= 1.0.12, < 2.0)
90
+ nenv (~> 0.1)
91
+ notiffany (~> 0.0)
92
+ pry (>= 0.9.12)
93
+ shellany (~> 0.0)
94
+ thor (>= 0.18.1)
95
+ guard-compat (1.2.1)
96
+ guard-rspec (4.7.3)
97
+ guard (~> 2.1)
98
+ guard-compat (~> 1.1)
99
+ rspec (>= 2.99.0, < 4.0)
100
+ guard-rubocop (1.3.0)
101
+ guard (~> 2.0)
102
+ rubocop (~> 0.20)
103
+ gyoku (1.3.1)
104
+ builder (>= 2.1.2)
105
+ hashdiff (1.0.0)
106
+ hashie (3.6.0)
107
+ highline (1.7.10)
108
+ httpclient (2.8.3)
109
+ iniparse (1.4.4)
110
+ ipaddress (0.8.3)
111
+ jaro_winkler (1.5.4)
112
+ json (2.3.0)
113
+ libyajl2 (1.2.0)
114
+ license-acceptance (1.0.13)
115
+ pastel (~> 0.7)
116
+ tomlrb (~> 1.2)
117
+ tty-box (~> 0.3)
118
+ tty-prompt (~> 0.18)
119
+ listen (3.2.1)
120
+ rb-fsevent (~> 0.10, >= 0.10.3)
121
+ rb-inotify (~> 0.9, >= 0.9.10)
122
+ little-plugger (1.1.4)
123
+ logging (2.2.2)
124
+ little-plugger (~> 1.1)
125
+ multi_json (~> 1.10)
126
+ lumberjack (1.0.13)
127
+ method_source (0.9.2)
128
+ mixlib-archive (1.0.5)
129
+ mixlib-log
130
+ mixlib-authentication (3.0.6)
131
+ mixlib-cli (2.1.5)
132
+ mixlib-config (3.0.6)
133
+ tomlrb
134
+ mixlib-log (3.0.8)
135
+ mixlib-shellout (3.0.9)
136
+ multi_json (1.14.1)
137
+ necromancer (0.5.1)
138
+ nenv (0.3.0)
139
+ net-scp (2.0.0)
140
+ net-ssh (>= 2.6.5, < 6.0.0)
141
+ net-sftp (2.1.2)
142
+ net-ssh (>= 2.6.5)
143
+ net-ssh (5.2.0)
144
+ net-ssh-gateway (2.0.0)
145
+ net-ssh (>= 4.0.0)
146
+ net-ssh-multi (1.2.1)
147
+ net-ssh (>= 2.6.5)
148
+ net-ssh-gateway (>= 1.2.0)
149
+ nori (2.6.0)
150
+ notiffany (0.1.3)
151
+ nenv (~> 0.1)
152
+ shellany (~> 0.0)
153
+ ohai (15.6.3)
154
+ chef-config (>= 12.8, < 16)
155
+ ffi (~> 1.9)
156
+ ffi-yajl (~> 2.2)
157
+ ipaddress
158
+ mixlib-cli (>= 1.7.0)
159
+ mixlib-config (>= 2.0, < 4.0)
160
+ mixlib-log (>= 2.0.1, < 4.0)
161
+ mixlib-shellout (>= 2.0, < 4.0)
162
+ plist (~> 3.1)
163
+ systemu (~> 2.6.4)
164
+ wmi-lite (~> 1.0)
165
+ parallel (1.19.1)
166
+ parser (2.7.0.1)
167
+ ast (~> 2.4.0)
168
+ pastel (0.7.3)
169
+ equatable (~> 0.6)
170
+ tty-color (~> 0.5)
171
+ plist (3.5.0)
172
+ proxifier (1.0.3)
173
+ pry (0.12.2)
174
+ coderay (~> 1.1.0)
175
+ method_source (~> 0.9.0)
176
+ public_suffix (4.0.2)
177
+ rack (2.2.3)
178
+ rainbow (3.0.0)
179
+ rake (13.0.1)
180
+ rb-fsevent (0.10.3)
181
+ rb-inotify (0.10.1)
182
+ ffi (~> 1.0)
183
+ rspec (3.9.0)
184
+ rspec-core (~> 3.9.0)
185
+ rspec-expectations (~> 3.9.0)
186
+ rspec-mocks (~> 3.9.0)
187
+ rspec-core (3.9.1)
188
+ rspec-support (~> 3.9.1)
189
+ rspec-expectations (3.9.0)
190
+ diff-lcs (>= 1.2.0, < 2.0)
191
+ rspec-support (~> 3.9.0)
192
+ rspec-mocks (3.9.0)
193
+ diff-lcs (>= 1.2.0, < 2.0)
194
+ rspec-support (~> 3.9.0)
195
+ rspec-support (3.9.2)
196
+ rubocop (0.78.0)
197
+ jaro_winkler (~> 1.5.1)
198
+ parallel (~> 1.10)
199
+ parser (>= 2.6)
200
+ rainbow (>= 2.2.2, < 4.0)
201
+ ruby-progressbar (~> 1.7)
202
+ unicode-display_width (>= 1.4.0, < 1.7)
203
+ ruby-progressbar (1.10.1)
204
+ rubyntlm (0.6.2)
205
+ rubyzip (2.0.0)
206
+ safe_yaml (1.0.5)
207
+ shellany (0.0.1)
208
+ simplecov (0.17.1)
209
+ docile (~> 1.1)
210
+ json (>= 1.8, < 3)
211
+ simplecov-html (~> 0.10.0)
212
+ simplecov-html (0.10.2)
213
+ strings (0.1.8)
214
+ strings-ansi (~> 0.1)
215
+ unicode-display_width (~> 1.5)
216
+ unicode_utils (~> 1.4)
217
+ strings-ansi (0.2.0)
218
+ syslog-logger (1.6.8)
219
+ systemu (2.6.5)
220
+ terminal-notifier-guard (1.7.0)
221
+ thor (1.0.1)
222
+ tomlrb (1.2.9)
223
+ train-core (3.2.5)
224
+ json (>= 1.8, < 3.0)
225
+ mixlib-shellout (>= 2.0, < 4.0)
226
+ net-scp (>= 1.2, < 3.0)
227
+ net-ssh (>= 2.9, < 6.0)
228
+ train-winrm (0.2.5)
229
+ winrm (~> 2.0)
230
+ winrm-fs (~> 1.0)
231
+ travis-lint (2.0.0)
232
+ json
233
+ tty-box (0.5.0)
234
+ pastel (~> 0.7.2)
235
+ strings (~> 0.1.6)
236
+ tty-cursor (~> 0.7)
237
+ tty-color (0.5.0)
238
+ tty-cursor (0.7.0)
239
+ tty-prompt (0.20.0)
240
+ necromancer (~> 0.5.0)
241
+ pastel (~> 0.7.0)
242
+ tty-reader (~> 0.7.0)
243
+ tty-reader (0.7.0)
244
+ tty-cursor (~> 0.7)
245
+ tty-screen (~> 0.7)
246
+ wisper (~> 2.0.0)
247
+ tty-screen (0.7.0)
248
+ unicode-display_width (1.6.0)
249
+ unicode_utils (1.4.0)
250
+ uuidtools (2.1.5)
251
+ vcr (5.0.0)
252
+ webmock (3.7.6)
253
+ addressable (>= 2.3.6)
254
+ crack (>= 0.3.2)
255
+ hashdiff (>= 0.4.0, < 2.0.0)
256
+ winrm (2.3.4)
257
+ builder (>= 2.1.2)
258
+ erubi (~> 1.8)
259
+ gssapi (~> 1.2)
260
+ gyoku (~> 1.0)
261
+ httpclient (~> 2.2, >= 2.2.0.2)
262
+ logging (>= 1.6.1, < 3.0)
263
+ nori (~> 2.0)
264
+ rubyntlm (~> 0.6.0, >= 0.6.1)
265
+ winrm-fs (1.3.4)
266
+ erubi (~> 1.8)
267
+ logging (>= 1.6.1, < 3.0)
268
+ rubyzip (~> 2.0)
269
+ winrm (~> 2.0)
270
+ wisper (2.0.1)
271
+ wmi-lite (1.0.5)
272
+
273
+ PLATFORMS
274
+ ruby
275
+
276
+ DEPENDENCIES
277
+ appraisal (~> 2.0.1)
278
+ bundler
279
+ chef (~> 15.0)
280
+ chef-handler-datadog!
281
+ dotenv
282
+ guard
283
+ guard-rspec
284
+ guard-rubocop
285
+ pry
286
+ rake
287
+ rspec
288
+ rubocop
289
+ simplecov
290
+ terminal-notifier-guard
291
+ travis-lint
292
+ vcr
293
+ webmock
294
+
295
+ BUNDLED WITH
296
+ 1.17.3