stub_requests 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (69) hide show
  1. checksums.yaml +4 -4
  2. data/.codeclimate.yml +7 -0
  3. data/.reek.yml +1 -0
  4. data/.rubocop.yml +2 -0
  5. data/.travis.yml +15 -0
  6. data/.yardopts +1 -1
  7. data/Appraisals +11 -0
  8. data/CHANGELOG.md +17 -0
  9. data/README.md +15 -2
  10. data/Rakefile +16 -1
  11. data/docs/.gitkeep +0 -0
  12. data/docs/Array.html +137 -0
  13. data/docs/FalseClass.html +232 -0
  14. data/docs/Hash.html +137 -0
  15. data/docs/NilClass.html +232 -0
  16. data/docs/Numeric.html +233 -0
  17. data/docs/Object.html +396 -0
  18. data/docs/String.html +298 -0
  19. data/docs/StubRequests/API.html +651 -0
  20. data/docs/StubRequests/ArgumentValidation.html +309 -0
  21. data/docs/StubRequests/Endpoint.html +1187 -0
  22. data/docs/StubRequests/EndpointNotFound.html +157 -0
  23. data/docs/StubRequests/EndpointRegistry.html +1527 -0
  24. data/docs/StubRequests/Error.html +153 -0
  25. data/docs/StubRequests/HashUtil.html +304 -0
  26. data/docs/StubRequests/InvalidType.html +252 -0
  27. data/docs/StubRequests/InvalidUri.html +252 -0
  28. data/docs/StubRequests/Service.html +1307 -0
  29. data/docs/StubRequests/ServiceHaveEndpoints.html +244 -0
  30. data/docs/StubRequests/ServiceNotFound.html +252 -0
  31. data/docs/StubRequests/ServiceRegistry.html +1031 -0
  32. data/docs/StubRequests/URI/Builder.html +1194 -0
  33. data/docs/StubRequests/URI/Scheme.html +315 -0
  34. data/docs/StubRequests/URI/Suffix.html +315 -0
  35. data/docs/StubRequests/URI/Validator.html +770 -0
  36. data/docs/StubRequests/URI.html +144 -0
  37. data/docs/StubRequests/UriSegmentMismatch.html +157 -0
  38. data/docs/StubRequests/WebMockBuilder.html +887 -0
  39. data/docs/StubRequests.html +452 -0
  40. data/docs/Time.html +232 -0
  41. data/docs/TrueClass.html +232 -0
  42. data/docs/_config.yml +1 -0
  43. data/docs/_index.html +391 -0
  44. data/docs/class_list.html +51 -0
  45. data/docs/css/common.css +1 -0
  46. data/docs/css/full_list.css +58 -0
  47. data/docs/css/style.css +496 -0
  48. data/docs/file.README.html +225 -0
  49. data/docs/file_list.html +56 -0
  50. data/docs/frames.html +17 -0
  51. data/docs/index.html +225 -0
  52. data/docs/js/app.js +292 -0
  53. data/docs/js/full_list.js +216 -0
  54. data/docs/js/jquery.js +4 -0
  55. data/docs/method_list.html +707 -0
  56. data/docs/top-level-namespace.html +112 -0
  57. data/gemfiles/.bundle/config +2 -0
  58. data/gemfiles/webmock_2.3.gemfile +8 -0
  59. data/gemfiles/webmock_2.3.gemfile.lock +206 -0
  60. data/gemfiles/webmock_3.5.gemfile +8 -0
  61. data/gemfiles/webmock_3.5.gemfile.lock +206 -0
  62. data/gemfiles/webmock_develop.gemfile +8 -0
  63. data/gemfiles/webmock_develop.gemfile.lock +211 -0
  64. data/lib/stub_requests/version.rb +1 -1
  65. data/lib/tasks/changelog.rake +18 -0
  66. data/lib/tasks/gem.rake +15 -0
  67. data/lib/tasks/git.rake +40 -0
  68. data/stub_requests.gemspec +23 -12
  69. metadata +138 -25
@@ -0,0 +1,112 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>
7
+ Top Level Namespace
8
+
9
+ &mdash; Documentation by YARD 0.9.18
10
+
11
+ </title>
12
+
13
+ <link rel="stylesheet" href="css/style.css" type="text/css" charset="utf-8" />
14
+
15
+ <link rel="stylesheet" href="css/common.css" type="text/css" charset="utf-8" />
16
+
17
+ <script type="text/javascript" charset="utf-8">
18
+ pathId = "";
19
+ relpath = '';
20
+ </script>
21
+
22
+
23
+ <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
24
+
25
+ <script type="text/javascript" charset="utf-8" src="js/app.js"></script>
26
+
27
+
28
+ </head>
29
+ <body>
30
+ <div class="nav_wrap">
31
+ <iframe id="nav" src="class_list.html?1"></iframe>
32
+ <div id="resizer"></div>
33
+ </div>
34
+
35
+ <div id="main" tabindex="-1">
36
+ <div id="header">
37
+ <div id="menu">
38
+
39
+ <a href="_index.html">Index</a> &raquo;
40
+
41
+
42
+ <span class="title">Top Level Namespace</span>
43
+
44
+ </div>
45
+
46
+ <div id="search">
47
+
48
+ <a class="full_list_link" id="class_list_link"
49
+ href="class_list.html">
50
+
51
+ <svg width="24" height="24">
52
+ <rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
53
+ <rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
54
+ <rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
55
+ </svg>
56
+ </a>
57
+
58
+ </div>
59
+ <div class="clear"></div>
60
+ </div>
61
+
62
+ <div id="content"><h1>Top Level Namespace
63
+
64
+
65
+
66
+ </h1>
67
+ <div class="box_info">
68
+
69
+
70
+
71
+
72
+
73
+
74
+
75
+
76
+
77
+
78
+
79
+ </div>
80
+
81
+ <h2>Defined Under Namespace</h2>
82
+ <p class="children">
83
+
84
+
85
+ <strong class="modules">Modules:</strong> <span class='object_link'><a href="StubRequests.html" title="StubRequests (module)">StubRequests</a></span>
86
+
87
+
88
+
89
+ <strong class="classes">Classes:</strong> <span class='object_link'><a href="Array.html" title="Array (class)">Array</a></span>, <span class='object_link'><a href="FalseClass.html" title="FalseClass (class)">FalseClass</a></span>, <span class='object_link'><a href="Hash.html" title="Hash (class)">Hash</a></span>, <span class='object_link'><a href="NilClass.html" title="NilClass (class)">NilClass</a></span>, <span class='object_link'><a href="Numeric.html" title="Numeric (class)">Numeric</a></span>, <span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span>, <span class='object_link'><a href="String.html" title="String (class)">String</a></span>, <span class='object_link'><a href="Time.html" title="Time (class)">Time</a></span>, <span class='object_link'><a href="TrueClass.html" title="TrueClass (class)">TrueClass</a></span>
90
+
91
+
92
+ </p>
93
+
94
+
95
+
96
+
97
+
98
+
99
+
100
+
101
+
102
+ </div>
103
+
104
+ <div id="footer">
105
+ Generated on Fri Feb 1 19:57:29 2019 by
106
+ <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
107
+ 0.9.18 (ruby-2.5.3).
108
+ </div>
109
+
110
+ </div>
111
+ </body>
112
+ </html>
@@ -0,0 +1,2 @@
1
+ ---
2
+ BUNDLE_RETRY: "1"
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rb-readline"
6
+ gem "webmock", "~> 2.3.0"
7
+
8
+ gemspec path: "../"
@@ -0,0 +1,206 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ stub_requests (0.1.0)
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
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rb-readline"
6
+ gem "webmock", "~> 3.5.0"
7
+
8
+ gemspec path: "../"
@@ -0,0 +1,206 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ stub_requests (0.1.0)
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
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rb-readline"
6
+ gem "webmock", git: "https://github.com/bblimke/webmock.git"
7
+
8
+ gemspec path: "../"