autodoc 0.7.0 → 0.7.1
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +197 -81
- data/lib/autodoc/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f949109553f40d0648ce7db3c7ad1dc34e3c825e
|
|
4
|
+
data.tar.gz: aba98fa5384f3800fc492fec28c9154e488a7207
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 857a1f3de052570c6dae4fb30169ce642366eee3f8162ed3e4d4f6ba588b957d8522683782391bcf114434215693060f409714663f1802da930cccc3847d73a5
|
|
7
|
+
data.tar.gz: ae882bf23025dd57506e4403b83cf2ee63f11e84c1a3264514b9c3c637e2dfe2331b91ed786b0dcf61cc4afe1c82d380f5f231b6b2bc122bd454e2105e9e0710
|
data/CHANGELOG.md
CHANGED
|
@@ -1,158 +1,274 @@
|
|
|
1
|
-
|
|
1
|
+
# Changelog
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
- Use `#to_hash` to response headers if it can respond it
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
5
4
|
|
|
6
|
-
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
## Unreleased
|
|
9
9
|
|
|
10
|
-
## 0.
|
|
10
|
+
## 0.7.1 - 2018-12-18
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
### Fixed
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
- Fixed broken symlink on spec/dummy/spec.
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
## 0.7.0 - 2018-08-30
|
|
17
17
|
|
|
18
|
-
|
|
18
|
+
### Changed
|
|
19
19
|
|
|
20
|
-
-
|
|
20
|
+
- Shell-escape given path.
|
|
21
|
+
- Use `#to_hash` to response headers if it can respond it.
|
|
21
22
|
|
|
22
|
-
## 0.
|
|
23
|
+
## 0.6.2 - 2017-08-22
|
|
23
24
|
|
|
24
|
-
|
|
25
|
+
### Fixed
|
|
25
26
|
|
|
26
|
-
|
|
27
|
+
- Support multibyte query parameters.
|
|
27
28
|
|
|
28
|
-
|
|
29
|
+
## 0.6.1 - 2017-05-30
|
|
29
30
|
|
|
30
|
-
|
|
31
|
+
### Fixed
|
|
31
32
|
|
|
32
|
-
-
|
|
33
|
+
- Fix Ruby-level warnings.
|
|
33
34
|
|
|
34
|
-
## 0.
|
|
35
|
+
## 0.6.0 - 2016-03-03
|
|
35
36
|
|
|
36
|
-
|
|
37
|
+
### Changed
|
|
37
38
|
|
|
38
|
-
|
|
39
|
+
- Change the message capitalization rule.
|
|
39
40
|
|
|
40
|
-
|
|
41
|
+
## 0.5.3 - 2016-02-19
|
|
41
42
|
|
|
42
|
-
|
|
43
|
+
### Fixed
|
|
43
44
|
|
|
44
|
-
-
|
|
45
|
+
- Fix bugs on pending examples.
|
|
45
46
|
|
|
46
|
-
## 0.
|
|
47
|
+
## 0.5.2 - 2015-09-18
|
|
47
48
|
|
|
48
|
-
|
|
49
|
+
### Fixed
|
|
49
50
|
|
|
50
|
-
|
|
51
|
+
- Fix version detector.
|
|
51
52
|
|
|
52
|
-
|
|
53
|
+
## 0.5.1 - 2015-06-28
|
|
53
54
|
|
|
54
|
-
|
|
55
|
+
### Fixed
|
|
55
56
|
|
|
56
|
-
-
|
|
57
|
+
- Fix lambda syntax.
|
|
57
58
|
|
|
58
|
-
## 0.
|
|
59
|
+
## 0.5.0 - 2015-04-22
|
|
59
60
|
|
|
60
|
-
|
|
61
|
+
### Added
|
|
61
62
|
|
|
62
|
-
|
|
63
|
+
- Add `Autodoc.configuration.document_path_from_example`.
|
|
63
64
|
|
|
64
|
-
|
|
65
|
+
## 0.4.5 - 2015-04-10
|
|
65
66
|
|
|
66
|
-
|
|
67
|
+
### Added
|
|
67
68
|
|
|
68
|
-
-
|
|
69
|
+
- Support other specs directory than spec/requests.
|
|
69
70
|
|
|
70
|
-
## 0.
|
|
71
|
+
## 0.4.4 - 2015-03-31
|
|
71
72
|
|
|
72
|
-
|
|
73
|
+
### Added
|
|
73
74
|
|
|
74
|
-
|
|
75
|
+
- Support image response.
|
|
75
76
|
|
|
76
|
-
|
|
77
|
+
## 0.4.3 - 2015-02-28
|
|
77
78
|
|
|
78
|
-
|
|
79
|
+
### Added
|
|
79
80
|
|
|
80
|
-
-
|
|
81
|
-
- filter request & response header by Autodoc.configuration.suppress_{request,response}_header
|
|
81
|
+
- Support nested parameters on weak_parameters.
|
|
82
82
|
|
|
83
|
-
## 0.
|
|
83
|
+
## 0.4.2 - 2015-02-13
|
|
84
84
|
|
|
85
|
-
|
|
85
|
+
### Added
|
|
86
86
|
|
|
87
|
-
|
|
87
|
+
- Add HTML Documentation support.
|
|
88
88
|
|
|
89
|
-
|
|
89
|
+
## 0.4.1 - 2015-01-13
|
|
90
90
|
|
|
91
|
-
|
|
91
|
+
### Added
|
|
92
92
|
|
|
93
|
-
-
|
|
93
|
+
- Support RSpec 2.99.
|
|
94
94
|
|
|
95
|
-
## 0.
|
|
95
|
+
## 0.4.0 - 2014-10-29
|
|
96
96
|
|
|
97
|
-
|
|
97
|
+
### Added
|
|
98
98
|
|
|
99
|
-
|
|
99
|
+
- Support RSpec 3.
|
|
100
100
|
|
|
101
|
-
|
|
102
|
-
- use Autodoc.configuration.path to change documents path
|
|
101
|
+
## 0.3.6 - 2014-05-19
|
|
103
102
|
|
|
104
|
-
|
|
103
|
+
### Added
|
|
105
104
|
|
|
106
|
-
-
|
|
105
|
+
- Show dummy message if Content-Type might be BINARY.
|
|
107
106
|
|
|
108
|
-
## 0.
|
|
107
|
+
## 0.3.5 - 2014-02-15
|
|
109
108
|
|
|
110
|
-
|
|
109
|
+
### Added
|
|
111
110
|
|
|
112
|
-
|
|
111
|
+
- Support PATCH method.
|
|
113
112
|
|
|
114
|
-
|
|
113
|
+
## 0.3.4 - 2014-01-24
|
|
115
114
|
|
|
116
|
-
|
|
115
|
+
### Added
|
|
117
116
|
|
|
118
|
-
-
|
|
117
|
+
- Some improvements on the document template file.
|
|
119
118
|
|
|
120
|
-
## 0.
|
|
119
|
+
## 0.3.3 - 2013-12-30
|
|
121
120
|
|
|
122
|
-
|
|
121
|
+
### Fixed
|
|
123
122
|
|
|
124
|
-
|
|
123
|
+
- Fix ToC template for specs in sub-directory.
|
|
125
124
|
|
|
126
|
-
|
|
125
|
+
## 0.3.2 - 2013-12-18
|
|
127
126
|
|
|
128
|
-
|
|
127
|
+
### Fixed
|
|
129
128
|
|
|
130
|
-
-
|
|
129
|
+
- Fix template & document bug.
|
|
131
130
|
|
|
132
|
-
## 0.1
|
|
131
|
+
## 0.3.1 - 2013-12-17
|
|
133
132
|
|
|
134
|
-
|
|
133
|
+
### Added
|
|
135
134
|
|
|
136
|
-
|
|
135
|
+
- Filter request & response header by Autodoc.configuration.suppress_{request,response}_header.
|
|
137
136
|
|
|
138
|
-
|
|
137
|
+
### Changed
|
|
139
138
|
|
|
140
|
-
|
|
139
|
+
- Prettify JSON request body.
|
|
141
140
|
|
|
142
|
-
-
|
|
141
|
+
## 0.3.0 - 2013-12-17
|
|
143
142
|
|
|
144
|
-
|
|
143
|
+
### Changed
|
|
145
144
|
|
|
146
|
-
-
|
|
145
|
+
- Change Autodoc::Document interface & template to mimic HTTP text.
|
|
147
146
|
|
|
148
|
-
## 0.
|
|
147
|
+
## 0.2.8 - 2013-12-17
|
|
149
148
|
|
|
150
|
-
|
|
149
|
+
### Changed
|
|
151
150
|
|
|
152
|
-
|
|
151
|
+
- Include query string into document template.
|
|
153
152
|
|
|
154
|
-
|
|
153
|
+
## 0.2.7 - 2013-12-05
|
|
155
154
|
|
|
156
|
-
|
|
155
|
+
### Changed
|
|
157
156
|
|
|
158
|
-
-
|
|
157
|
+
- Sort list in ToC.
|
|
158
|
+
|
|
159
|
+
## 0.2.6 - 2013-12-02
|
|
160
|
+
|
|
161
|
+
### Fixed
|
|
162
|
+
|
|
163
|
+
- Fix ToC generator.
|
|
164
|
+
|
|
165
|
+
## 0.2.5 - 2013-11-30
|
|
166
|
+
|
|
167
|
+
### Added
|
|
168
|
+
|
|
169
|
+
- Add ToC generator.
|
|
170
|
+
- Use Autodoc.configuration.path to change documents path.
|
|
171
|
+
|
|
172
|
+
## 0.2.4 - 2013-11-30
|
|
173
|
+
|
|
174
|
+
### Added
|
|
175
|
+
|
|
176
|
+
- Add Documents class.
|
|
177
|
+
|
|
178
|
+
## 0.2.3 - 2013-11-30
|
|
179
|
+
|
|
180
|
+
### Changed
|
|
181
|
+
|
|
182
|
+
- Clean up dependencies & implementation.
|
|
183
|
+
|
|
184
|
+
## 0.2.2 - 2013-11-29
|
|
185
|
+
|
|
186
|
+
### Fixed
|
|
187
|
+
|
|
188
|
+
- Fix default documented headers.
|
|
189
|
+
|
|
190
|
+
## 0.2.1 - 2013-11-29
|
|
191
|
+
|
|
192
|
+
### Fixed
|
|
193
|
+
|
|
194
|
+
- Fix load dependency on rspec.
|
|
195
|
+
|
|
196
|
+
## 0.2.0 - 2013-11-29
|
|
197
|
+
|
|
198
|
+
### Changed
|
|
199
|
+
|
|
200
|
+
- Remove dependency on awesome_print.
|
|
201
|
+
|
|
202
|
+
## 0.1.9 - 2013-11-01
|
|
203
|
+
|
|
204
|
+
### Fixed
|
|
205
|
+
|
|
206
|
+
- Fix encoding error at ruby 1.9 or earlier versions.
|
|
207
|
+
|
|
208
|
+
## 0.1.8 - 2013-10-23
|
|
209
|
+
|
|
210
|
+
### Added
|
|
211
|
+
|
|
212
|
+
- Support rack-test.
|
|
213
|
+
|
|
214
|
+
## 0.1.7 - 2013-10-08
|
|
215
|
+
|
|
216
|
+
### Changed
|
|
217
|
+
|
|
218
|
+
- Change response format from Ruby hash table to JSON object.
|
|
219
|
+
|
|
220
|
+
## 0.1.6 - 2013-09-04
|
|
221
|
+
|
|
222
|
+
### Added
|
|
223
|
+
|
|
224
|
+
- Support WeakParameter's :description option.
|
|
225
|
+
|
|
226
|
+
## 0.1.5 - 2013-08-22
|
|
227
|
+
|
|
228
|
+
## 0.1.4 - 2013-08-20
|
|
229
|
+
|
|
230
|
+
## 0.1.3 - 2013-08-20
|
|
231
|
+
|
|
232
|
+
## 0.1.2 - 2013-07-29
|
|
233
|
+
|
|
234
|
+
## 0.1.1 - 2013-07-29
|
|
235
|
+
|
|
236
|
+
### Added
|
|
237
|
+
|
|
238
|
+
- Custom template.
|
|
239
|
+
|
|
240
|
+
## 0.1.0 - 2013-07-12
|
|
241
|
+
|
|
242
|
+
### Added
|
|
243
|
+
|
|
244
|
+
- AUTODOC environment variable.
|
|
245
|
+
|
|
246
|
+
## 0.0.9 - 2013-07-08
|
|
247
|
+
|
|
248
|
+
## 0.0.8 - 2013-07-08
|
|
249
|
+
|
|
250
|
+
### Changed
|
|
251
|
+
|
|
252
|
+
- Show request body.
|
|
253
|
+
|
|
254
|
+
## 0.0.7 - 2013-06-18
|
|
255
|
+
|
|
256
|
+
## 0.0.6 - 2013-06-14
|
|
257
|
+
|
|
258
|
+
## 0.0.5 - 2013-06-11
|
|
259
|
+
|
|
260
|
+
## 0.0.4 - 2013-06-11
|
|
261
|
+
|
|
262
|
+
## 0.0.3 - 2013-06-11
|
|
263
|
+
|
|
264
|
+
### Added
|
|
265
|
+
|
|
266
|
+
- Configurable response header.
|
|
267
|
+
|
|
268
|
+
## 0.0.2 - 2013-06-10
|
|
269
|
+
|
|
270
|
+
## 0.0.1 - 2013-06-07
|
|
271
|
+
|
|
272
|
+
### Added
|
|
273
|
+
|
|
274
|
+
- 1st release on 2013-06-07.
|
data/lib/autodoc/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: autodoc
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ryo Nakamura
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-12-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|