stub_requests 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/.reek.yml +1 -0
  3. data/CHANGELOG.md +2 -0
  4. data/README.md +2 -2
  5. data/lib/stub_requests/api.rb +8 -22
  6. data/lib/stub_requests/callback.rb +58 -0
  7. data/lib/stub_requests/callback_registry.rb +188 -0
  8. data/lib/stub_requests/core_ext/all.rb +1 -0
  9. data/lib/stub_requests/core_ext/array/extract_options.rb +4 -6
  10. data/lib/stub_requests/core_ext/class/attribute.rb +2 -3
  11. data/lib/stub_requests/core_ext/kernel/singleton_class.rb +2 -3
  12. data/lib/stub_requests/core_ext/module/redefine_method.rb +6 -0
  13. data/lib/stub_requests/core_ext/object/blank.rb +21 -22
  14. data/lib/stub_requests/core_ext/string/to_route_param.rb +35 -0
  15. data/lib/stub_requests/dsl/define_method.rb +49 -0
  16. data/lib/stub_requests/dsl/method_definition.rb +72 -0
  17. data/lib/stub_requests/dsl.rb +94 -0
  18. data/lib/stub_requests/endpoint.rb +48 -36
  19. data/lib/stub_requests/endpoint_stub.rb +89 -0
  20. data/lib/stub_requests/endpoints.rb +147 -0
  21. data/lib/stub_requests/observable.rb +0 -44
  22. data/lib/stub_requests/request_stub.rb +80 -0
  23. data/lib/stub_requests/service.rb +77 -0
  24. data/lib/stub_requests/service_registry.rb +174 -0
  25. data/lib/stub_requests/stub_registry.rb +159 -0
  26. data/lib/stub_requests/uri/builder.rb +27 -34
  27. data/lib/stub_requests/uri.rb +31 -4
  28. data/lib/stub_requests/version.rb +1 -1
  29. data/lib/stub_requests/webmock/stub_registry_extension.rb +1 -1
  30. data/lib/stub_requests.rb +12 -12
  31. data/lib/tasks/changelog.rake +2 -1
  32. metadata +14 -16
  33. data/gemfiles/webmock_2.3.gemfile.lock +0 -206
  34. data/gemfiles/webmock_3.5.gemfile.lock +0 -206
  35. data/gemfiles/webmock_develop.gemfile.lock +0 -211
  36. data/lib/stub_requests/metrics/endpoint.rb +0 -98
  37. data/lib/stub_requests/metrics/registry.rb +0 -132
  38. data/lib/stub_requests/metrics/request.rb +0 -89
  39. data/lib/stub_requests/metrics.rb +0 -33
  40. data/lib/stub_requests/observable/registry.rb +0 -152
  41. data/lib/stub_requests/observable/subscription.rb +0 -58
  42. data/lib/stub_requests/registration/endpoint.rb +0 -107
  43. data/lib/stub_requests/registration/endpoints.rb +0 -156
  44. data/lib/stub_requests/registration/registry.rb +0 -112
  45. data/lib/stub_requests/registration/service.rb +0 -85
  46. data/lib/stub_requests/registration.rb +0 -87
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stub_requests
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mikael Henriksson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-02-04 00:00:00.000000000 Z
11
+ date: 2019-02-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: docile
@@ -372,16 +372,15 @@ files:
372
372
  - bin/setup
373
373
  - gemfiles/.bundle/config
374
374
  - gemfiles/webmock_2.3.gemfile
375
- - gemfiles/webmock_2.3.gemfile.lock
376
375
  - gemfiles/webmock_3.5.gemfile
377
- - gemfiles/webmock_3.5.gemfile.lock
378
376
  - gemfiles/webmock_develop.gemfile
379
- - gemfiles/webmock_develop.gemfile.lock
380
377
  - index.md
381
378
  - lib/rspec/subject_as_lambda.rb
382
379
  - lib/stub_requests.rb
383
380
  - lib/stub_requests/api.rb
384
381
  - lib/stub_requests/argument_validation.rb
382
+ - lib/stub_requests/callback.rb
383
+ - lib/stub_requests/callback_registry.rb
385
384
  - lib/stub_requests/configuration.rb
386
385
  - lib/stub_requests/core_ext.rb
387
386
  - lib/stub_requests/core_ext/all.rb
@@ -390,23 +389,22 @@ files:
390
389
  - lib/stub_requests/core_ext/kernel/singleton_class.rb
391
390
  - lib/stub_requests/core_ext/module/redefine_method.rb
392
391
  - lib/stub_requests/core_ext/object/blank.rb
392
+ - lib/stub_requests/core_ext/string/to_route_param.rb
393
+ - lib/stub_requests/dsl.rb
394
+ - lib/stub_requests/dsl/define_method.rb
395
+ - lib/stub_requests/dsl/method_definition.rb
393
396
  - lib/stub_requests/endpoint.rb
397
+ - lib/stub_requests/endpoint_stub.rb
398
+ - lib/stub_requests/endpoints.rb
394
399
  - lib/stub_requests/exceptions.rb
395
400
  - lib/stub_requests/hash_util.rb
396
- - lib/stub_requests/metrics.rb
397
- - lib/stub_requests/metrics/endpoint.rb
398
- - lib/stub_requests/metrics/registry.rb
399
- - lib/stub_requests/metrics/request.rb
400
401
  - lib/stub_requests/observable.rb
401
- - lib/stub_requests/observable/registry.rb
402
- - lib/stub_requests/observable/subscription.rb
403
402
  - lib/stub_requests/property.rb
404
403
  - lib/stub_requests/property/validator.rb
405
- - lib/stub_requests/registration.rb
406
- - lib/stub_requests/registration/endpoint.rb
407
- - lib/stub_requests/registration/endpoints.rb
408
- - lib/stub_requests/registration/registry.rb
409
- - lib/stub_requests/registration/service.rb
404
+ - lib/stub_requests/request_stub.rb
405
+ - lib/stub_requests/service.rb
406
+ - lib/stub_requests/service_registry.rb
407
+ - lib/stub_requests/stub_registry.rb
410
408
  - lib/stub_requests/stub_requests.rb
411
409
  - lib/stub_requests/uri.rb
412
410
  - lib/stub_requests/uri/builder.rb
@@ -1,206 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- stub_requests (0.1.2)
5
- concurrent-ruby (~> 1.0, < 2)
6
- docile (~> 1.0, < 2)
7
- public_suffix (~> 3.0, < 4)
8
- webmock (>= 2.3, < 4.0)
9
-
10
- GEM
11
- remote: https://rubygems.org/
12
- specs:
13
- activesupport (5.2.2)
14
- concurrent-ruby (~> 1.0, >= 1.0.2)
15
- i18n (>= 0.7, < 2)
16
- minitest (~> 5.1)
17
- tzinfo (~> 1.1)
18
- addressable (2.4.0)
19
- appraisal (2.2.0)
20
- bundler
21
- rake
22
- thor (>= 0.14.0)
23
- ast (2.4.0)
24
- axiom-types (0.1.1)
25
- descendants_tracker (~> 0.0.4)
26
- ice_nine (~> 0.11.0)
27
- thread_safe (~> 0.3, >= 0.3.1)
28
- backports (3.11.4)
29
- codeclimate-engine-rb (0.4.1)
30
- virtus (~> 1.0)
31
- coderay (1.1.2)
32
- coercible (1.0.0)
33
- descendants_tracker (~> 0.0.1)
34
- concurrent-ruby (1.1.4)
35
- crack (0.4.3)
36
- safe_yaml (~> 1.0.0)
37
- descendants_tracker (0.0.4)
38
- thread_safe (~> 0.3, >= 0.3.1)
39
- diff-lcs (1.3)
40
- docile (1.3.1)
41
- equalizer (0.0.11)
42
- ethon (0.12.0)
43
- ffi (>= 1.3.0)
44
- faraday (0.15.4)
45
- multipart-post (>= 1.2, < 3)
46
- faraday-http-cache (2.0.0)
47
- faraday (~> 0.8)
48
- faraday_middleware (0.13.0)
49
- faraday (>= 0.7.4, < 1.0)
50
- ffi (1.10.0)
51
- gem-release (2.0.1)
52
- gh (0.15.1)
53
- addressable (~> 2.4.0)
54
- backports
55
- faraday (~> 0.8)
56
- multi_json (~> 1.0)
57
- net-http-persistent (~> 2.9)
58
- net-http-pipeline
59
- github-markup (3.0.2)
60
- github_changelog_generator (1.14.3)
61
- activesupport
62
- faraday-http-cache
63
- multi_json
64
- octokit (~> 4.6)
65
- rainbow (>= 2.1)
66
- rake (>= 10.0)
67
- retriable (~> 2.1)
68
- hashdiff (0.3.8)
69
- highline (1.7.10)
70
- i18n (1.5.3)
71
- concurrent-ruby (~> 1.0)
72
- ice_nine (0.11.2)
73
- jaro_winkler (1.5.2)
74
- json (2.1.0)
75
- json_spec (1.1.5)
76
- multi_json (~> 1.0)
77
- rspec (>= 2.0, < 4.0)
78
- kwalify (0.7.2)
79
- launchy (2.4.3)
80
- addressable (~> 2.3)
81
- method_source (0.9.2)
82
- minitest (5.11.3)
83
- multi_json (1.13.1)
84
- multipart-post (2.0.0)
85
- net-http-persistent (2.9.4)
86
- net-http-pipeline (1.0.1)
87
- octokit (4.13.0)
88
- sawyer (~> 0.8.0, >= 0.5.3)
89
- parallel (1.13.0)
90
- parser (2.5.3.0)
91
- ast (~> 2.4.0)
92
- powerpack (0.1.2)
93
- pry (0.12.2)
94
- coderay (~> 1.1.0)
95
- method_source (~> 0.9.0)
96
- psych (3.1.0)
97
- public_suffix (3.0.3)
98
- pusher-client (0.6.2)
99
- json
100
- websocket (~> 1.0)
101
- rainbow (3.0.0)
102
- rake (12.3.2)
103
- rb-readline (0.5.5)
104
- redcarpet (3.4.0)
105
- reek (5.3.0)
106
- codeclimate-engine-rb (~> 0.4.0)
107
- kwalify (~> 0.7.0)
108
- parser (>= 2.5.0.0, < 2.6, != 2.5.1.1)
109
- psych (~> 3.1.0)
110
- rainbow (>= 2.0, < 4.0)
111
- retriable (2.1.0)
112
- rspec (3.8.0)
113
- rspec-core (~> 3.8.0)
114
- rspec-expectations (~> 3.8.0)
115
- rspec-mocks (~> 3.8.0)
116
- rspec-core (3.8.0)
117
- rspec-support (~> 3.8.0)
118
- rspec-expectations (3.8.2)
119
- diff-lcs (>= 1.2.0, < 2.0)
120
- rspec-support (~> 3.8.0)
121
- rspec-its (1.2.0)
122
- rspec-core (>= 3.0.0)
123
- rspec-expectations (>= 3.0.0)
124
- rspec-mocks (3.8.0)
125
- diff-lcs (>= 1.2.0, < 2.0)
126
- rspec-support (~> 3.8.0)
127
- rspec-support (3.8.0)
128
- rubocop (0.63.1)
129
- jaro_winkler (~> 1.5.1)
130
- parallel (~> 1.10)
131
- parser (>= 2.5, != 2.5.1.1)
132
- powerpack (~> 0.1)
133
- rainbow (>= 2.2.2, < 4.0)
134
- ruby-progressbar (~> 1.7)
135
- unicode-display_width (~> 1.4.0)
136
- rubocop-rspec (1.32.0)
137
- rubocop (>= 0.60.0)
138
- ruby-progressbar (1.10.0)
139
- safe_yaml (1.0.4)
140
- sawyer (0.8.1)
141
- addressable (>= 2.3.5, < 2.6)
142
- faraday (~> 0.8, < 1.0)
143
- simplecov (0.16.1)
144
- docile (~> 1.1)
145
- json (>= 1.8, < 3)
146
- simplecov-html (~> 0.10.0)
147
- simplecov-html (0.10.2)
148
- simplecov-json (0.2)
149
- json
150
- simplecov
151
- thor (0.20.3)
152
- thread_safe (0.3.6)
153
- travis (1.8.9)
154
- backports
155
- faraday (~> 0.9)
156
- faraday_middleware (~> 0.9, >= 0.9.1)
157
- gh (~> 0.13)
158
- highline (~> 1.6)
159
- launchy (~> 2.1)
160
- pusher-client (~> 0.4)
161
- typhoeus (~> 0.6, >= 0.6.8)
162
- typhoeus (0.8.0)
163
- ethon (>= 0.8.0)
164
- tzinfo (1.2.5)
165
- thread_safe (~> 0.1)
166
- unicode-display_width (1.4.1)
167
- virtus (1.0.5)
168
- axiom-types (~> 0.1)
169
- coercible (~> 1.0)
170
- descendants_tracker (~> 0.0, >= 0.0.3)
171
- equalizer (~> 0.0, >= 0.0.9)
172
- webmock (2.3.2)
173
- addressable (>= 2.3.6)
174
- crack (>= 0.3.2)
175
- hashdiff
176
- websocket (1.2.8)
177
- yard (0.9.18)
178
-
179
- PLATFORMS
180
- ruby
181
-
182
- DEPENDENCIES
183
- appraisal (>= 2.2.0)
184
- bundler (>= 2.0)
185
- gem-release (>= 2.0)
186
- github-markup (~> 3.0)
187
- github_changelog_generator (~> 1.14)
188
- json_spec (>= 1.1.5)
189
- pry (>= 0.12)
190
- rake (>= 10.0)
191
- rb-readline
192
- redcarpet (~> 3.4)
193
- reek (>= 5.0)
194
- rspec (>= 3.8)
195
- rspec-its (>= 1.2)
196
- rubocop (~> 0.63.1)
197
- rubocop-rspec (~> 1.32)
198
- simplecov (>= 0.16.1)
199
- simplecov-json (>= 0.2)
200
- stub_requests!
201
- travis (>= 1.8.9)
202
- webmock (~> 2.3.0)
203
- yard (~> 0.9.18)
204
-
205
- BUNDLED WITH
206
- 2.0.1
@@ -1,206 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- stub_requests (0.1.2)
5
- concurrent-ruby (~> 1.0, < 2)
6
- docile (~> 1.0, < 2)
7
- public_suffix (~> 3.0, < 4)
8
- webmock (>= 2.3, < 4.0)
9
-
10
- GEM
11
- remote: https://rubygems.org/
12
- specs:
13
- activesupport (5.2.2)
14
- concurrent-ruby (~> 1.0, >= 1.0.2)
15
- i18n (>= 0.7, < 2)
16
- minitest (~> 5.1)
17
- tzinfo (~> 1.1)
18
- addressable (2.4.0)
19
- appraisal (2.2.0)
20
- bundler
21
- rake
22
- thor (>= 0.14.0)
23
- ast (2.4.0)
24
- axiom-types (0.1.1)
25
- descendants_tracker (~> 0.0.4)
26
- ice_nine (~> 0.11.0)
27
- thread_safe (~> 0.3, >= 0.3.1)
28
- backports (3.11.4)
29
- codeclimate-engine-rb (0.4.1)
30
- virtus (~> 1.0)
31
- coderay (1.1.2)
32
- coercible (1.0.0)
33
- descendants_tracker (~> 0.0.1)
34
- concurrent-ruby (1.1.4)
35
- crack (0.4.3)
36
- safe_yaml (~> 1.0.0)
37
- descendants_tracker (0.0.4)
38
- thread_safe (~> 0.3, >= 0.3.1)
39
- diff-lcs (1.3)
40
- docile (1.3.1)
41
- equalizer (0.0.11)
42
- ethon (0.12.0)
43
- ffi (>= 1.3.0)
44
- faraday (0.15.4)
45
- multipart-post (>= 1.2, < 3)
46
- faraday-http-cache (2.0.0)
47
- faraday (~> 0.8)
48
- faraday_middleware (0.13.0)
49
- faraday (>= 0.7.4, < 1.0)
50
- ffi (1.10.0)
51
- gem-release (2.0.1)
52
- gh (0.15.1)
53
- addressable (~> 2.4.0)
54
- backports
55
- faraday (~> 0.8)
56
- multi_json (~> 1.0)
57
- net-http-persistent (~> 2.9)
58
- net-http-pipeline
59
- github-markup (3.0.2)
60
- github_changelog_generator (1.14.3)
61
- activesupport
62
- faraday-http-cache
63
- multi_json
64
- octokit (~> 4.6)
65
- rainbow (>= 2.1)
66
- rake (>= 10.0)
67
- retriable (~> 2.1)
68
- hashdiff (0.3.8)
69
- highline (1.7.10)
70
- i18n (1.5.3)
71
- concurrent-ruby (~> 1.0)
72
- ice_nine (0.11.2)
73
- jaro_winkler (1.5.2)
74
- json (2.1.0)
75
- json_spec (1.1.5)
76
- multi_json (~> 1.0)
77
- rspec (>= 2.0, < 4.0)
78
- kwalify (0.7.2)
79
- launchy (2.4.3)
80
- addressable (~> 2.3)
81
- method_source (0.9.2)
82
- minitest (5.11.3)
83
- multi_json (1.13.1)
84
- multipart-post (2.0.0)
85
- net-http-persistent (2.9.4)
86
- net-http-pipeline (1.0.1)
87
- octokit (4.13.0)
88
- sawyer (~> 0.8.0, >= 0.5.3)
89
- parallel (1.13.0)
90
- parser (2.5.3.0)
91
- ast (~> 2.4.0)
92
- powerpack (0.1.2)
93
- pry (0.12.2)
94
- coderay (~> 1.1.0)
95
- method_source (~> 0.9.0)
96
- psych (3.1.0)
97
- public_suffix (3.0.3)
98
- pusher-client (0.6.2)
99
- json
100
- websocket (~> 1.0)
101
- rainbow (3.0.0)
102
- rake (12.3.2)
103
- rb-readline (0.5.5)
104
- redcarpet (3.4.0)
105
- reek (5.3.0)
106
- codeclimate-engine-rb (~> 0.4.0)
107
- kwalify (~> 0.7.0)
108
- parser (>= 2.5.0.0, < 2.6, != 2.5.1.1)
109
- psych (~> 3.1.0)
110
- rainbow (>= 2.0, < 4.0)
111
- retriable (2.1.0)
112
- rspec (3.8.0)
113
- rspec-core (~> 3.8.0)
114
- rspec-expectations (~> 3.8.0)
115
- rspec-mocks (~> 3.8.0)
116
- rspec-core (3.8.0)
117
- rspec-support (~> 3.8.0)
118
- rspec-expectations (3.8.2)
119
- diff-lcs (>= 1.2.0, < 2.0)
120
- rspec-support (~> 3.8.0)
121
- rspec-its (1.2.0)
122
- rspec-core (>= 3.0.0)
123
- rspec-expectations (>= 3.0.0)
124
- rspec-mocks (3.8.0)
125
- diff-lcs (>= 1.2.0, < 2.0)
126
- rspec-support (~> 3.8.0)
127
- rspec-support (3.8.0)
128
- rubocop (0.63.1)
129
- jaro_winkler (~> 1.5.1)
130
- parallel (~> 1.10)
131
- parser (>= 2.5, != 2.5.1.1)
132
- powerpack (~> 0.1)
133
- rainbow (>= 2.2.2, < 4.0)
134
- ruby-progressbar (~> 1.7)
135
- unicode-display_width (~> 1.4.0)
136
- rubocop-rspec (1.32.0)
137
- rubocop (>= 0.60.0)
138
- ruby-progressbar (1.10.0)
139
- safe_yaml (1.0.4)
140
- sawyer (0.8.1)
141
- addressable (>= 2.3.5, < 2.6)
142
- faraday (~> 0.8, < 1.0)
143
- simplecov (0.16.1)
144
- docile (~> 1.1)
145
- json (>= 1.8, < 3)
146
- simplecov-html (~> 0.10.0)
147
- simplecov-html (0.10.2)
148
- simplecov-json (0.2)
149
- json
150
- simplecov
151
- thor (0.20.3)
152
- thread_safe (0.3.6)
153
- travis (1.8.9)
154
- backports
155
- faraday (~> 0.9)
156
- faraday_middleware (~> 0.9, >= 0.9.1)
157
- gh (~> 0.13)
158
- highline (~> 1.6)
159
- launchy (~> 2.1)
160
- pusher-client (~> 0.4)
161
- typhoeus (~> 0.6, >= 0.6.8)
162
- typhoeus (0.8.0)
163
- ethon (>= 0.8.0)
164
- tzinfo (1.2.5)
165
- thread_safe (~> 0.1)
166
- unicode-display_width (1.4.1)
167
- virtus (1.0.5)
168
- axiom-types (~> 0.1)
169
- coercible (~> 1.0)
170
- descendants_tracker (~> 0.0, >= 0.0.3)
171
- equalizer (~> 0.0, >= 0.0.9)
172
- webmock (3.5.1)
173
- addressable (>= 2.3.6)
174
- crack (>= 0.3.2)
175
- hashdiff
176
- websocket (1.2.8)
177
- yard (0.9.18)
178
-
179
- PLATFORMS
180
- ruby
181
-
182
- DEPENDENCIES
183
- appraisal (>= 2.2.0)
184
- bundler (>= 2.0)
185
- gem-release (>= 2.0)
186
- github-markup (~> 3.0)
187
- github_changelog_generator (~> 1.14)
188
- json_spec (>= 1.1.5)
189
- pry (>= 0.12)
190
- rake (>= 10.0)
191
- rb-readline
192
- redcarpet (~> 3.4)
193
- reek (>= 5.0)
194
- rspec (>= 3.8)
195
- rspec-its (>= 1.2)
196
- rubocop (~> 0.63.1)
197
- rubocop-rspec (~> 1.32)
198
- simplecov (>= 0.16.1)
199
- simplecov-json (>= 0.2)
200
- stub_requests!
201
- travis (>= 1.8.9)
202
- webmock (~> 3.5.0)
203
- yard (~> 0.9.18)
204
-
205
- BUNDLED WITH
206
- 2.0.1
@@ -1,211 +0,0 @@
1
- GIT
2
- remote: https://github.com/bblimke/webmock.git
3
- revision: 90f0bb7d5dd012ec5c1e9fcc2d1216539dcee87f
4
- specs:
5
- webmock (3.5.1)
6
- addressable (>= 2.3.6)
7
- crack (>= 0.3.2)
8
- hashdiff
9
-
10
- PATH
11
- remote: ..
12
- specs:
13
- stub_requests (0.1.2)
14
- concurrent-ruby (~> 1.0, < 2)
15
- docile (~> 1.0, < 2)
16
- public_suffix (~> 3.0, < 4)
17
- webmock (>= 2.3, < 4.0)
18
-
19
- GEM
20
- remote: https://rubygems.org/
21
- specs:
22
- activesupport (5.2.2)
23
- concurrent-ruby (~> 1.0, >= 1.0.2)
24
- i18n (>= 0.7, < 2)
25
- minitest (~> 5.1)
26
- tzinfo (~> 1.1)
27
- addressable (2.4.0)
28
- appraisal (2.2.0)
29
- bundler
30
- rake
31
- thor (>= 0.14.0)
32
- ast (2.4.0)
33
- axiom-types (0.1.1)
34
- descendants_tracker (~> 0.0.4)
35
- ice_nine (~> 0.11.0)
36
- thread_safe (~> 0.3, >= 0.3.1)
37
- backports (3.11.4)
38
- codeclimate-engine-rb (0.4.1)
39
- virtus (~> 1.0)
40
- coderay (1.1.2)
41
- coercible (1.0.0)
42
- descendants_tracker (~> 0.0.1)
43
- concurrent-ruby (1.1.4)
44
- crack (0.4.3)
45
- safe_yaml (~> 1.0.0)
46
- descendants_tracker (0.0.4)
47
- thread_safe (~> 0.3, >= 0.3.1)
48
- diff-lcs (1.3)
49
- docile (1.3.1)
50
- equalizer (0.0.11)
51
- ethon (0.12.0)
52
- ffi (>= 1.3.0)
53
- faraday (0.15.4)
54
- multipart-post (>= 1.2, < 3)
55
- faraday-http-cache (2.0.0)
56
- faraday (~> 0.8)
57
- faraday_middleware (0.13.0)
58
- faraday (>= 0.7.4, < 1.0)
59
- ffi (1.10.0)
60
- gem-release (2.0.1)
61
- gh (0.15.1)
62
- addressable (~> 2.4.0)
63
- backports
64
- faraday (~> 0.8)
65
- multi_json (~> 1.0)
66
- net-http-persistent (~> 2.9)
67
- net-http-pipeline
68
- github-markup (3.0.2)
69
- github_changelog_generator (1.14.3)
70
- activesupport
71
- faraday-http-cache
72
- multi_json
73
- octokit (~> 4.6)
74
- rainbow (>= 2.1)
75
- rake (>= 10.0)
76
- retriable (~> 2.1)
77
- hashdiff (0.3.8)
78
- highline (1.7.10)
79
- i18n (1.5.3)
80
- concurrent-ruby (~> 1.0)
81
- ice_nine (0.11.2)
82
- jaro_winkler (1.5.2)
83
- json (2.1.0)
84
- json_spec (1.1.5)
85
- multi_json (~> 1.0)
86
- rspec (>= 2.0, < 4.0)
87
- kwalify (0.7.2)
88
- launchy (2.4.3)
89
- addressable (~> 2.3)
90
- method_source (0.9.2)
91
- minitest (5.11.3)
92
- multi_json (1.13.1)
93
- multipart-post (2.0.0)
94
- net-http-persistent (2.9.4)
95
- net-http-pipeline (1.0.1)
96
- octokit (4.13.0)
97
- sawyer (~> 0.8.0, >= 0.5.3)
98
- parallel (1.13.0)
99
- parser (2.5.3.0)
100
- ast (~> 2.4.0)
101
- powerpack (0.1.2)
102
- pry (0.12.2)
103
- coderay (~> 1.1.0)
104
- method_source (~> 0.9.0)
105
- psych (3.1.0)
106
- public_suffix (3.0.3)
107
- pusher-client (0.6.2)
108
- json
109
- websocket (~> 1.0)
110
- rainbow (3.0.0)
111
- rake (12.3.2)
112
- rb-readline (0.5.5)
113
- redcarpet (3.4.0)
114
- reek (5.3.0)
115
- codeclimate-engine-rb (~> 0.4.0)
116
- kwalify (~> 0.7.0)
117
- parser (>= 2.5.0.0, < 2.6, != 2.5.1.1)
118
- psych (~> 3.1.0)
119
- rainbow (>= 2.0, < 4.0)
120
- retriable (2.1.0)
121
- rspec (3.8.0)
122
- rspec-core (~> 3.8.0)
123
- rspec-expectations (~> 3.8.0)
124
- rspec-mocks (~> 3.8.0)
125
- rspec-core (3.8.0)
126
- rspec-support (~> 3.8.0)
127
- rspec-expectations (3.8.2)
128
- diff-lcs (>= 1.2.0, < 2.0)
129
- rspec-support (~> 3.8.0)
130
- rspec-its (1.2.0)
131
- rspec-core (>= 3.0.0)
132
- rspec-expectations (>= 3.0.0)
133
- rspec-mocks (3.8.0)
134
- diff-lcs (>= 1.2.0, < 2.0)
135
- rspec-support (~> 3.8.0)
136
- rspec-support (3.8.0)
137
- rubocop (0.63.1)
138
- jaro_winkler (~> 1.5.1)
139
- parallel (~> 1.10)
140
- parser (>= 2.5, != 2.5.1.1)
141
- powerpack (~> 0.1)
142
- rainbow (>= 2.2.2, < 4.0)
143
- ruby-progressbar (~> 1.7)
144
- unicode-display_width (~> 1.4.0)
145
- rubocop-rspec (1.32.0)
146
- rubocop (>= 0.60.0)
147
- ruby-progressbar (1.10.0)
148
- safe_yaml (1.0.4)
149
- sawyer (0.8.1)
150
- addressable (>= 2.3.5, < 2.6)
151
- faraday (~> 0.8, < 1.0)
152
- simplecov (0.16.1)
153
- docile (~> 1.1)
154
- json (>= 1.8, < 3)
155
- simplecov-html (~> 0.10.0)
156
- simplecov-html (0.10.2)
157
- simplecov-json (0.2)
158
- json
159
- simplecov
160
- thor (0.20.3)
161
- thread_safe (0.3.6)
162
- travis (1.8.9)
163
- backports
164
- faraday (~> 0.9)
165
- faraday_middleware (~> 0.9, >= 0.9.1)
166
- gh (~> 0.13)
167
- highline (~> 1.6)
168
- launchy (~> 2.1)
169
- pusher-client (~> 0.4)
170
- typhoeus (~> 0.6, >= 0.6.8)
171
- typhoeus (0.8.0)
172
- ethon (>= 0.8.0)
173
- tzinfo (1.2.5)
174
- thread_safe (~> 0.1)
175
- unicode-display_width (1.4.1)
176
- virtus (1.0.5)
177
- axiom-types (~> 0.1)
178
- coercible (~> 1.0)
179
- descendants_tracker (~> 0.0, >= 0.0.3)
180
- equalizer (~> 0.0, >= 0.0.9)
181
- websocket (1.2.8)
182
- yard (0.9.18)
183
-
184
- PLATFORMS
185
- ruby
186
-
187
- DEPENDENCIES
188
- appraisal (>= 2.2.0)
189
- bundler (>= 2.0)
190
- gem-release (>= 2.0)
191
- github-markup (~> 3.0)
192
- github_changelog_generator (~> 1.14)
193
- json_spec (>= 1.1.5)
194
- pry (>= 0.12)
195
- rake (>= 10.0)
196
- rb-readline
197
- redcarpet (~> 3.4)
198
- reek (>= 5.0)
199
- rspec (>= 3.8)
200
- rspec-its (>= 1.2)
201
- rubocop (~> 0.63.1)
202
- rubocop-rspec (~> 1.32)
203
- simplecov (>= 0.16.1)
204
- simplecov-json (>= 0.2)
205
- stub_requests!
206
- travis (>= 1.8.9)
207
- webmock!
208
- yard (~> 0.9.18)
209
-
210
- BUNDLED WITH
211
- 2.0.1