chef-handler-datadog 0.12.3 → 0.13.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 (52) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +158 -0
  3. data/.gitignore +0 -1
  4. data/CHANGELOG.md +9 -0
  5. data/Gemfile +1 -0
  6. data/Gemfile.lock +296 -0
  7. data/README.md +1 -1
  8. data/chef-handler-datadog.gemspec +1 -1
  9. data/lib/chef/handler/datadog_chef_events.rb +3 -0
  10. data/lib/chef/handler/datadog_chef_tags.rb +2 -1
  11. data/lib/chef_handler_datadog.rb +1 -1
  12. data/spec/datadog_spec.rb +173 -166
  13. data/spec/support/cassettes/Chef_Handler_Datadog/failed_Chef_run/sets_alert_handles_when_specified.yml +239 -181
  14. data/spec/support/cassettes/Chef_Handler_Datadog/failed_Chef_run/sets_event_title_correctly.yml +119 -90
  15. data/spec/support/cassettes/Chef_Handler_Datadog/failed_Chef_run/sets_priority_correctly.yml +119 -90
  16. data/spec/support/cassettes/Chef_Handler_Datadog/hostname/uses_the_node_name_when_no_config_specified.yml +119 -89
  17. data/spec/support/cassettes/Chef_Handler_Datadog/hostname/uses_the_specified_hostname_when_provided.yml +119 -89
  18. 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
  19. 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
  20. 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
  21. data/spec/support/cassettes/Chef_Handler_Datadog/reports_metrics_event_and_sets_tags/emits_events/posts_an_event.yml +119 -89
  22. data/spec/support/cassettes/Chef_Handler_Datadog/reports_metrics_event_and_sets_tags/emits_events/sets_priority_correctly.yml +119 -89
  23. data/spec/support/cassettes/Chef_Handler_Datadog/reports_metrics_event_and_sets_tags/emits_metrics/reports_metrics.yml +119 -89
  24. 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
  25. data/spec/support/cassettes/Chef_Handler_Datadog/resources/failure_during_compile_phase/only_emits_the_run_status_metrics.yml +74 -56
  26. data/spec/support/cassettes/Chef_Handler_Datadog/resources/failure_during_compile_phase/posts_an_event.yml +74 -56
  27. 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
  28. 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
  29. data/spec/support/cassettes/Chef_Handler_Datadog/tags/when_policy_tags_are_enabled/sets_the_policy_name_and_policy_group_tags.yml +120 -90
  30. 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
  31. data/spec/support/cassettes/Chef_Handler_Datadog/tags/when_specified/allows_for_empty_scope_prefix.yml +119 -90
  32. data/spec/support/cassettes/Chef_Handler_Datadog/tags/when_specified/allows_for_empty_tag_prefix.yml +117 -127
  33. data/spec/support/cassettes/Chef_Handler_Datadog/tags/when_specified/allows_for_user-specified_scope_prefix.yml +119 -90
  34. data/spec/support/cassettes/Chef_Handler_Datadog/tags/when_specified/allows_for_user-specified_tag_prefix.yml +121 -92
  35. data/spec/support/cassettes/Chef_Handler_Datadog/tags/when_specified/sets_the_role_and_env_and_tags.yml +119 -90
  36. data/spec/support/cassettes/Chef_Handler_Datadog/tags/when_tag_blacklist_is_specified/does_not_include_the_tag_s_specified.yml +118 -88
  37. data/spec/support/cassettes/Chef_Handler_Datadog/tags/when_tag_blacklist_is_unspecified/should_include_all_of_the_tag_s_.yml +118 -88
  38. data/spec/support/cassettes/Chef_Handler_Datadog/tags/when_unspecified/sets_role_env_and_nothing_else.yml +119 -90
  39. data/spec/support/cassettes/Chef_Handler_Datadog/tags_submission_retries/when_not_specified/does_not_retry_after_a_failed_submission.yml +112 -124
  40. data/spec/support/cassettes/Chef_Handler_Datadog/tags_submission_retries/when_specified_as_2_retries/retries_no_more_than_twice.yml +108 -210
  41. data/spec/support/cassettes/Chef_Handler_Datadog/tags_submission_retries/when_specified_as_2_retries/stops_retrying_once_submission_is_successful.yml +110 -168
  42. data/spec/support/cassettes/Chef_Handler_Datadog/updated_resources/posts_an_event.yml +119 -89
  43. metadata +9 -21
  44. data/.travis.yml +0 -34
  45. data/gemfiles/chef_12.7.gemfile +0 -16
  46. data/gemfiles/chef_12.gemfile +0 -16
  47. data/gemfiles/chef_13.gemfile +0 -16
  48. data/gemfiles/chef_14.gemfile +0 -16
  49. data/spec/support/cassettes/Chef_Handler_Datadog/handles_no_application_key/fails_when_no_application_key_is_provided.yml +0 -143
  50. data/spec/support/cassettes/Chef_Handler_Datadog/when_reporting_to_multiple_endpoints/emits_events/posts_an_event.yml +0 -575
  51. data/spec/support/cassettes/Chef_Handler_Datadog/when_reporting_to_multiple_endpoints/emits_metrics/reports_metrics.yml +0 -575
  52. 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: b6d238ccc66981606466cca7e0a36098a7fd55e2372306193c5f80021a161fb7
4
- data.tar.gz: ae15461ffab7b5421d7dd0dd56493eb4fd0f696e4a9497e733367445779b3d66
3
+ metadata.gz: 7d696e97b14a28b9cc159db1f6a85c8185730965de4061027086247bb5e7cde7
4
+ data.tar.gz: 8e0959d1165a84d660b4319917d6e1a9347ca3d432b5cbd52630a9ba0073bb23
5
5
  SHA512:
6
- metadata.gz: f6308f1d7226e514baadc27262489a5597bc959f0e8662cec44e5e88abc346975fe26a87759cf25fdbc411c625808f2f37c4fc4887c9f2ea94df74ae68ebcdba
7
- data.tar.gz: '0669c141775ea7b269ba16c019052ecf52b3214846841b3f518281aa4fbb6a392936f759eed130ca272f49201192a9b782edce17b1e391a6085f523f4f711c23'
6
+ metadata.gz: 30bc95b26acd06575ed072e40190160cf333b2a4cf22e5a3ebcbe1aa410ea0773764768a33a62576ef231325637350d099848764f1d2b94091c3f4fb4b2bb85e
7
+ data.tar.gz: 2f5fd1a8cf13605ada6dc4ff2a84902c22c22a28d2278544991440912974e6c68a442bb178882669bfa3f986506e1c72781c0e2c4ab9ffea233ed49680662879
@@ -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
@@ -1,6 +1,12 @@
1
1
  Changes
2
2
  =======
3
3
 
4
+ # 0.13.0 / 2020-01-10
5
+
6
+ * [MISC] Update dogapi gem version constraint and fix tests. [#119][]
7
+ * [MISC] Use a single test Gemfile. [#117][]
8
+ * [MISC] Move tests to CircleCI. [#116][]
9
+
4
10
  # 0.12.3 / 2019-11-19
5
11
 
6
12
  * [FEATURE] Use `api_url` to send Chef related data to extra endpoints. [#113][] [@Azoam][]
@@ -137,6 +143,9 @@ And all other versions were prior to this. See git history for more.
137
143
  [#104]: https://github.com/DataDog/chef-handler-datadog/issues/104
138
144
  [#109]: https://github.com/DataDog/chef-handler-datadog/issues/109
139
145
  [#113]: https://github.com/DataDog/chef-handler-datadog/issues/113
146
+ [#116]: https://github.com/DataDog/chef-handler-datadog/issues/116
147
+ [#117]: https://github.com/DataDog/chef-handler-datadog/issues/117
148
+ [#119]: https://github.com/DataDog/chef-handler-datadog/issues/119
140
149
  [@ABrehm264]: https://github.com/ABrehm264
141
150
  [@Azoam]: https://github.com/Azoam
142
151
  [@DanielMuller]: https://github.com/DanielMuller
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.12.3)
5
+ dogapi (~> 1.38.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.38.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.0.8)
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