jazzy 0.7.5 → 0.8.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +29 -0
- data/Gemfile.lock +20 -22
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Resources +1 -0
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/SourceKittenFramework +1 -0
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Commandant.framework/Commandant +1 -0
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Commandant.framework/Resources +1 -0
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Commandant.framework/Versions/Current +1 -0
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Result.framework/Resources +1 -0
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Result.framework/Result +1 -0
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Result.framework/Versions/Current +1 -0
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/SWXMLHash.framework/Resources +1 -0
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/SWXMLHash.framework/SWXMLHash +1 -0
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/SWXMLHash.framework/Versions/Current +1 -0
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Yams.framework/Resources +1 -0
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Yams.framework/Versions/Current +1 -0
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Yams.framework/Yams +1 -0
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/Current +1 -0
- data/lib/jazzy/config.rb +5 -0
- data/lib/jazzy/doc_builder.rb +14 -12
- data/lib/jazzy/gem_version.rb +1 -1
- data/lib/jazzy/jazzy_markdown.rb +4 -4
- data/lib/jazzy/source_declaration.rb +0 -4
- data/lib/jazzy/sourcekitten.rb +4 -3
- data/lib/jazzy/themes/apple/assets/css/jazzy.css.scss +7 -0
- data/spec/integration_spec.rb +1 -1
- metadata +13 -3
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/SourceKittenFramework +0 -0
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Commandant.framework/Commandant +0 -0
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Result.framework/Result +0 -0
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/SWXMLHash.framework/SWXMLHash +0 -0
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Yams.framework/Yams +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dc460519a4f57d266ecc60cbc931be6206c3d619
|
|
4
|
+
data.tar.gz: ee27a31724d4c8740edf0060ea1f0395a75c34cd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 72ae7b9ea2eebf2dd6d7a487453cb81e33bbcebece34c63c94fe61117dda83853acbb05d74d346c331026fb0362487cf874d4fbc98d896840b4f7e84b8b26957
|
|
7
|
+
data.tar.gz: 9a6a51fe79fa42185ae16375f0560c9e471c07e59dad504663db53ab9ee1d7b748e9971f7da5ddd3bba9b6365e1ca62925a36add31e1da3b89204e8b7c3a0df8
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,32 @@
|
|
|
1
|
+
## 0.8.0
|
|
2
|
+
|
|
3
|
+
##### Breaking
|
|
4
|
+
|
|
5
|
+
* `undocumented.json` is now only in the output directory and is no longer
|
|
6
|
+
copied into docsets.
|
|
7
|
+
[Jeremy David Giesbrecht](https://github.com/SDGGiesbrecht)
|
|
8
|
+
[#754](https://github.com/realm/jazzy/issues/754)
|
|
9
|
+
|
|
10
|
+
##### Enhancements
|
|
11
|
+
|
|
12
|
+
* Add `--[no-]download-badge` flag to skip downloading the documentation
|
|
13
|
+
coverage badge from shields.io. Useful if generating docs offline.
|
|
14
|
+
[JP Simard](https://github.com/jpsim)
|
|
15
|
+
[#765](https://github.com/realm/jazzy/issues/765)
|
|
16
|
+
|
|
17
|
+
##### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* Blank line no longer needed before lists or code blocks.
|
|
20
|
+
[John Fairhurst](https://github.com/johnfairh)
|
|
21
|
+
[#546](https://github.com/realm/jazzy/issues/546)
|
|
22
|
+
|
|
23
|
+
* Linking to headers in apple theme gives correct vertical alignment.
|
|
24
|
+
[John Fairhurst](https://github.com/johnfairh)
|
|
25
|
+
|
|
26
|
+
* Headers in source code markdown no longer cause corruption.
|
|
27
|
+
[John Fairhurst](https://github.com/johnfairh)
|
|
28
|
+
[#628](https://github.com/realm/jazzy/issues/628)
|
|
29
|
+
|
|
1
30
|
## 0.7.5
|
|
2
31
|
|
|
3
32
|
##### Breaking
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
jazzy (0.
|
|
4
|
+
jazzy (0.8.0)
|
|
5
5
|
cocoapods (~> 1.0)
|
|
6
6
|
mustache (~> 0.99)
|
|
7
7
|
open4
|
|
@@ -15,9 +15,8 @@ GEM
|
|
|
15
15
|
remote: https://rubygems.org/
|
|
16
16
|
specs:
|
|
17
17
|
CFPropertyList (2.3.5)
|
|
18
|
-
activesupport (4.2.
|
|
18
|
+
activesupport (4.2.8)
|
|
19
19
|
i18n (~> 0.7)
|
|
20
|
-
json (~> 1.7, >= 1.7.7)
|
|
21
20
|
minitest (~> 5.1)
|
|
22
21
|
thread_safe (~> 0.3, >= 0.3.4)
|
|
23
22
|
tzinfo (~> 1.1)
|
|
@@ -33,26 +32,26 @@ GEM
|
|
|
33
32
|
clintegracon (0.7.0)
|
|
34
33
|
colored (~> 1.2)
|
|
35
34
|
diffy
|
|
36
|
-
cocoapods (1.2.
|
|
35
|
+
cocoapods (1.2.1)
|
|
37
36
|
activesupport (>= 4.0.2, < 5)
|
|
38
37
|
claide (>= 1.0.1, < 2.0)
|
|
39
|
-
cocoapods-core (= 1.2.
|
|
38
|
+
cocoapods-core (= 1.2.1)
|
|
40
39
|
cocoapods-deintegrate (>= 1.0.1, < 2.0)
|
|
41
40
|
cocoapods-downloader (>= 1.1.3, < 2.0)
|
|
42
41
|
cocoapods-plugins (>= 1.0.0, < 2.0)
|
|
43
42
|
cocoapods-search (>= 1.0.0, < 2.0)
|
|
44
43
|
cocoapods-stats (>= 1.0.0, < 2.0)
|
|
45
|
-
cocoapods-trunk (>= 1.
|
|
44
|
+
cocoapods-trunk (>= 1.2.0, < 2.0)
|
|
46
45
|
cocoapods-try (>= 1.1.0, < 2.0)
|
|
47
|
-
|
|
46
|
+
colored2 (~> 3.1)
|
|
48
47
|
escape (~> 0.0.4)
|
|
49
48
|
fourflusher (~> 2.0.1)
|
|
50
49
|
gh_inspector (~> 1.0)
|
|
51
|
-
molinillo (~> 0.5.
|
|
50
|
+
molinillo (~> 0.5.7)
|
|
52
51
|
nap (~> 1.0)
|
|
53
|
-
ruby-macho (~>
|
|
54
|
-
xcodeproj (>= 1.4.
|
|
55
|
-
cocoapods-core (1.2.
|
|
52
|
+
ruby-macho (~> 1.1)
|
|
53
|
+
xcodeproj (>= 1.4.4, < 2.0)
|
|
54
|
+
cocoapods-core (1.2.1)
|
|
56
55
|
activesupport (>= 4.0.2, < 5)
|
|
57
56
|
fuzzy_match (~> 2.0.4)
|
|
58
57
|
nap (~> 1.0)
|
|
@@ -62,11 +61,12 @@ GEM
|
|
|
62
61
|
nap
|
|
63
62
|
cocoapods-search (1.0.0)
|
|
64
63
|
cocoapods-stats (1.0.0)
|
|
65
|
-
cocoapods-trunk (1.
|
|
64
|
+
cocoapods-trunk (1.2.0)
|
|
66
65
|
nap (>= 0.8, < 2.0)
|
|
67
66
|
netrc (= 0.7.8)
|
|
68
67
|
cocoapods-try (1.1.0)
|
|
69
68
|
colored (1.2)
|
|
69
|
+
colored2 (3.1.2)
|
|
70
70
|
cork (0.2.0)
|
|
71
71
|
colored (~> 1.2)
|
|
72
72
|
crack (0.4.3)
|
|
@@ -93,8 +93,7 @@ GEM
|
|
|
93
93
|
gh_inspector (1.0.3)
|
|
94
94
|
git (1.3.0)
|
|
95
95
|
hashdiff (0.3.0)
|
|
96
|
-
i18n (0.8.
|
|
97
|
-
json (1.8.6)
|
|
96
|
+
i18n (0.8.1)
|
|
98
97
|
kramdown (1.13.1)
|
|
99
98
|
liferaft (0.0.6)
|
|
100
99
|
metaclass (0.0.4)
|
|
@@ -103,7 +102,7 @@ GEM
|
|
|
103
102
|
metaclass (~> 0.0.1)
|
|
104
103
|
mocha-on-bacon (0.2.2)
|
|
105
104
|
mocha (>= 0.13.0)
|
|
106
|
-
molinillo (0.5.
|
|
105
|
+
molinillo (0.5.7)
|
|
107
106
|
multipart-post (2.0.0)
|
|
108
107
|
mustache (0.99.8)
|
|
109
108
|
nanaimo (0.2.3)
|
|
@@ -128,7 +127,7 @@ GEM
|
|
|
128
127
|
rainbow (>= 1.99.1, < 3.0)
|
|
129
128
|
ruby-progressbar (~> 1.7)
|
|
130
129
|
unicode-display_width (~> 1.0, >= 1.0.1)
|
|
131
|
-
ruby-macho (
|
|
130
|
+
ruby-macho (1.1.0)
|
|
132
131
|
ruby-progressbar (1.8.1)
|
|
133
132
|
safe_yaml (1.0.4)
|
|
134
133
|
sass (3.4.23)
|
|
@@ -137,8 +136,8 @@ GEM
|
|
|
137
136
|
faraday (~> 0.8, < 1.0)
|
|
138
137
|
sqlite3 (1.3.13)
|
|
139
138
|
terminal-table (1.6.0)
|
|
140
|
-
thread_safe (0.3.
|
|
141
|
-
tzinfo (1.2.
|
|
139
|
+
thread_safe (0.3.6)
|
|
140
|
+
tzinfo (1.2.3)
|
|
142
141
|
thread_safe (~> 0.1)
|
|
143
142
|
unicode-display_width (1.1.3)
|
|
144
143
|
webmock (1.24.2)
|
|
@@ -147,11 +146,10 @@ GEM
|
|
|
147
146
|
hashdiff
|
|
148
147
|
xcinvoke (0.3.0)
|
|
149
148
|
liferaft (~> 0.0.6)
|
|
150
|
-
xcodeproj (1.4.
|
|
149
|
+
xcodeproj (1.4.4)
|
|
151
150
|
CFPropertyList (~> 2.3.3)
|
|
152
|
-
activesupport (>= 3)
|
|
153
151
|
claide (>= 1.0.1, < 2.0)
|
|
154
|
-
|
|
152
|
+
colored2 (~> 3.1)
|
|
155
153
|
nanaimo (~> 0.2.3)
|
|
156
154
|
|
|
157
155
|
PLATFORMS
|
|
@@ -172,4 +170,4 @@ DEPENDENCIES
|
|
|
172
170
|
webmock
|
|
173
171
|
|
|
174
172
|
BUNDLED WITH
|
|
175
|
-
1.14.
|
|
173
|
+
1.14.6
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/Current/Resources
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/Current/SourceKittenFrame
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Commandant.f
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Commandant.f
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Commandant.f
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Result.frame
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Result.frame
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Result.frame
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/SWXMLHash.fr
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/SWXMLHash.fr
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/SWXMLHash.fr
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Yams.framewo
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Yams.framewo
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Yams.framewo
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A
|
data/lib/jazzy/config.rb
CHANGED
|
@@ -324,6 +324,11 @@ module Jazzy
|
|
|
324
324
|
raise '--assets-directory is deprecated: use --theme instead.'
|
|
325
325
|
end
|
|
326
326
|
|
|
327
|
+
config_attr :download_badge,
|
|
328
|
+
command_line: '--[no-]download-badge',
|
|
329
|
+
description: 'Download documentation coverage badge from shields.io.',
|
|
330
|
+
default: true
|
|
331
|
+
|
|
327
332
|
# rubocop:enable Style/AlignParameters
|
|
328
333
|
|
|
329
334
|
def initialize
|
data/lib/jazzy/doc_builder.rb
CHANGED
|
@@ -151,7 +151,6 @@ module Jazzy
|
|
|
151
151
|
)
|
|
152
152
|
|
|
153
153
|
prepare_output_dir(options.output, options.clean)
|
|
154
|
-
write_lint_report(undocumented, options)
|
|
155
154
|
|
|
156
155
|
puts "#{coverage}\% documentation coverage " \
|
|
157
156
|
"with #{undocumented.count} undocumented symbol" \
|
|
@@ -160,6 +159,8 @@ module Jazzy
|
|
|
160
159
|
unless options.skip_documentation
|
|
161
160
|
build_site(docs, coverage, options)
|
|
162
161
|
end
|
|
162
|
+
|
|
163
|
+
write_lint_report(undocumented, options)
|
|
163
164
|
end
|
|
164
165
|
|
|
165
166
|
def self.relative_path_if_inside(path, base_path)
|
|
@@ -257,9 +258,8 @@ module Jazzy
|
|
|
257
258
|
# @param [Number] coverage The documentation coverage percentage
|
|
258
259
|
# @param [Config] options Build options
|
|
259
260
|
def self.download_badge(coverage, options)
|
|
260
|
-
if options.hide_documentation_coverage
|
|
261
|
-
|
|
262
|
-
end
|
|
261
|
+
return if options.hide_documentation_coverage || !options.download_badge
|
|
262
|
+
|
|
263
263
|
warn 'downloading coverage badge'
|
|
264
264
|
color = color_for_coverage(coverage)
|
|
265
265
|
uri = URI.parse('https://img.shields.io')
|
|
@@ -304,15 +304,15 @@ module Jazzy
|
|
|
304
304
|
abstract = (item.abstract || '') + (item.discussion || '')
|
|
305
305
|
item_render = {
|
|
306
306
|
name: item.name,
|
|
307
|
-
abstract:
|
|
307
|
+
abstract: abstract,
|
|
308
308
|
declaration: item.declaration,
|
|
309
309
|
other_language_declaration: item.other_language_declaration,
|
|
310
310
|
usr: item.usr,
|
|
311
311
|
dash_type: item.type.dash_type,
|
|
312
312
|
github_token_url: gh_token_url(item, source_module),
|
|
313
|
-
default_impl_abstract:
|
|
313
|
+
default_impl_abstract: item.default_impl_abstract,
|
|
314
314
|
from_protocol_extension: item.from_protocol_extension,
|
|
315
|
-
return:
|
|
315
|
+
return: item.return,
|
|
316
316
|
parameters: (item.parameters if item.parameters.any?),
|
|
317
317
|
url: (item.url if item.children.any?),
|
|
318
318
|
start_line: item.start_line,
|
|
@@ -321,10 +321,6 @@ module Jazzy
|
|
|
321
321
|
item_render.reject { |_, v| v.nil? }
|
|
322
322
|
end
|
|
323
323
|
|
|
324
|
-
def self.render_markdown(markdown)
|
|
325
|
-
Jazzy.markdown.render(markdown) if markdown
|
|
326
|
-
end
|
|
327
|
-
|
|
328
324
|
def self.make_task(mark, uid, items)
|
|
329
325
|
{
|
|
330
326
|
name: mark.name,
|
|
@@ -367,6 +363,12 @@ module Jazzy
|
|
|
367
363
|
return document_markdown(source_module, doc_model, path_to_root)
|
|
368
364
|
end
|
|
369
365
|
|
|
366
|
+
overview = (doc_model.abstract || '') + (doc_model.discussion || '')
|
|
367
|
+
alternative_abstract = doc_model.alternative_abstract
|
|
368
|
+
if alternative_abstract
|
|
369
|
+
overview = Jazzy.markdown.render(alternative_abstract) + overview
|
|
370
|
+
end
|
|
371
|
+
|
|
370
372
|
doc = Doc.new # Mustache model instance
|
|
371
373
|
doc[:custom_head] = Config.instance.custom_head
|
|
372
374
|
doc[:disable_search] = Config.instance.disable_search
|
|
@@ -376,7 +378,7 @@ module Jazzy
|
|
|
376
378
|
doc[:kind] = doc_model.type.name
|
|
377
379
|
doc[:dash_type] = doc_model.type.dash_type
|
|
378
380
|
doc[:declaration] = doc_model.declaration
|
|
379
|
-
doc[:overview] =
|
|
381
|
+
doc[:overview] = overview
|
|
380
382
|
doc[:structure] = source_module.doc_structure
|
|
381
383
|
doc[:tasks] = render_tasks(source_module, doc_model.children)
|
|
382
384
|
doc[:module_name] = source_module.name
|
data/lib/jazzy/gem_version.rb
CHANGED
data/lib/jazzy/jazzy_markdown.rb
CHANGED
|
@@ -13,10 +13,9 @@ module Jazzy
|
|
|
13
13
|
.sub(/^-/, '')
|
|
14
14
|
.sub(/-$/, '')
|
|
15
15
|
|
|
16
|
-
"<
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
"<h#{header_level} id='#{text_slug}'>#{text}</h#{header_level}>\n"
|
|
16
|
+
"<h#{header_level} id='#{text_slug}' class='heading'>" \
|
|
17
|
+
"#{text}" \
|
|
18
|
+
"</h#{header_level}>\n"
|
|
20
19
|
end
|
|
21
20
|
|
|
22
21
|
# List from
|
|
@@ -104,6 +103,7 @@ module Jazzy
|
|
|
104
103
|
strikethrough: true,
|
|
105
104
|
space_after_headers: false,
|
|
106
105
|
tables: true,
|
|
106
|
+
lax_spacing: true,
|
|
107
107
|
}.freeze
|
|
108
108
|
end
|
|
109
109
|
|
data/lib/jazzy/sourcekitten.rb
CHANGED
|
@@ -48,6 +48,7 @@ module Jazzy
|
|
|
48
48
|
module SourceKitten
|
|
49
49
|
@documented_count = 0
|
|
50
50
|
@undocumented_decls = []
|
|
51
|
+
@default_abstract = Jazzy.markdown.render('Undocumented').freeze
|
|
51
52
|
|
|
52
53
|
# Group root-level docs by custom categories (if any) and type
|
|
53
54
|
def self.group_docs(docs)
|
|
@@ -93,7 +94,7 @@ module Jazzy
|
|
|
93
94
|
SourceDeclaration.new.tap do |sd|
|
|
94
95
|
sd.type = SourceDeclaration::Type.overview
|
|
95
96
|
sd.name = name
|
|
96
|
-
sd.abstract = abstract
|
|
97
|
+
sd.abstract = Jazzy.markdown.render(abstract)
|
|
97
98
|
sd.children = group
|
|
98
99
|
end
|
|
99
100
|
end
|
|
@@ -221,7 +222,7 @@ module Jazzy
|
|
|
221
222
|
# @todo: Fix these
|
|
222
223
|
declaration.line = nil
|
|
223
224
|
declaration.column = nil
|
|
224
|
-
declaration.abstract =
|
|
225
|
+
declaration.abstract = @default_abstract
|
|
225
226
|
declaration.parameters = []
|
|
226
227
|
declaration.children = []
|
|
227
228
|
end
|
|
@@ -497,7 +498,7 @@ module Jazzy
|
|
|
497
498
|
end
|
|
498
499
|
unless defaults.empty?
|
|
499
500
|
proto_method.default_impl_abstract =
|
|
500
|
-
defaults.flat_map { |d| [d.abstract, d.discussion] }.join
|
|
501
|
+
defaults.flat_map { |d| [d.abstract, d.discussion] }.join
|
|
501
502
|
end
|
|
502
503
|
end
|
|
503
504
|
end
|
data/spec/integration_spec.rb
CHANGED
|
@@ -66,7 +66,7 @@ CLIntegracon.configure do |c|
|
|
|
66
66
|
# Ignore certain OSX files
|
|
67
67
|
c.ignores '.DS_Store'
|
|
68
68
|
c.ignores '.git'
|
|
69
|
-
c.ignores %r{^(?!(docs/|execution_output.txt))}
|
|
69
|
+
c.ignores %r{^(?!((api-)?docs/|execution_output.txt))}
|
|
70
70
|
c.ignores '*.tgz'
|
|
71
71
|
|
|
72
72
|
# Remove absolute paths from output
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jazzy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.8.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- JP Simard
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2017-
|
|
13
|
+
date: 2017-04-27 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: cocoapods
|
|
@@ -181,18 +181,27 @@ files:
|
|
|
181
181
|
- images/screenshot.jpg
|
|
182
182
|
- jazzy.gemspec
|
|
183
183
|
- lib/jazzy.rb
|
|
184
|
+
- lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Resources
|
|
184
185
|
- lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/SourceKittenFramework
|
|
185
186
|
- lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Commandant.framework/Commandant
|
|
187
|
+
- lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Commandant.framework/Resources
|
|
186
188
|
- lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Commandant.framework/Versions/A/Commandant
|
|
187
189
|
- lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Commandant.framework/Versions/A/Resources/Info.plist
|
|
190
|
+
- lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Commandant.framework/Versions/Current
|
|
191
|
+
- lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Result.framework/Resources
|
|
188
192
|
- lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Result.framework/Result
|
|
189
193
|
- lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Result.framework/Versions/A/Resources/Info.plist
|
|
190
194
|
- lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Result.framework/Versions/A/Result
|
|
195
|
+
- lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Result.framework/Versions/Current
|
|
196
|
+
- lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/SWXMLHash.framework/Resources
|
|
191
197
|
- lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/SWXMLHash.framework/SWXMLHash
|
|
192
198
|
- lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/SWXMLHash.framework/Versions/A/Resources/Info.plist
|
|
193
199
|
- lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/SWXMLHash.framework/Versions/A/SWXMLHash
|
|
200
|
+
- lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/SWXMLHash.framework/Versions/Current
|
|
201
|
+
- lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Yams.framework/Resources
|
|
194
202
|
- lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Yams.framework/Versions/A/Resources/Info.plist
|
|
195
203
|
- lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Yams.framework/Versions/A/Yams
|
|
204
|
+
- lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Yams.framework/Versions/Current
|
|
196
205
|
- lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Yams.framework/Yams
|
|
197
206
|
- lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/libswiftCore.dylib
|
|
198
207
|
- lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/libswiftCoreGraphics.dylib
|
|
@@ -203,6 +212,7 @@ files:
|
|
|
203
212
|
- lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/libswiftObjectiveC.dylib
|
|
204
213
|
- lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Resources/Info.plist
|
|
205
214
|
- lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/SourceKittenFramework
|
|
215
|
+
- lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/Current
|
|
206
216
|
- lib/jazzy/SourceKitten/Rakefile
|
|
207
217
|
- lib/jazzy/SourceKitten/bin/sourcekitten
|
|
208
218
|
- lib/jazzy/config.rb
|
|
@@ -281,7 +291,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
281
291
|
version: '0'
|
|
282
292
|
requirements: []
|
|
283
293
|
rubyforge_project:
|
|
284
|
-
rubygems_version: 2.
|
|
294
|
+
rubygems_version: 2.6.11
|
|
285
295
|
signing_key:
|
|
286
296
|
specification_version: 4
|
|
287
297
|
summary: Soulful docs for Swift & Objective-C.
|
data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/SourceKittenFramework
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|