jazzy 0.0.13 → 0.0.14
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/.rubocop.yml +4 -3
- data/Gemfile.lock +5 -3
- data/Rakefile +4 -2
- data/bin/sourcekitten +0 -0
- data/jazzy.gemspec +1 -0
- data/lib/jazzy/assets/css/{jazzy.css → jazzy.css.scss} +199 -231
- data/lib/jazzy/config.rb +27 -13
- data/lib/jazzy/doc.mustache +2 -2
- data/lib/jazzy/doc.rb +2 -1
- data/lib/jazzy/doc_builder.rb +124 -70
- data/lib/jazzy/gem_version.rb +1 -1
- data/lib/jazzy/source_module.rb +28 -0
- data/lib/jazzy/sourcekitten.rb +95 -70
- data/lib/jazzy/xml_helper.rb +2 -1
- data/spec/integration_specs/document_alamofire/after/docs/Classes.html +2 -2
- data/spec/integration_specs/document_alamofire/after/docs/Classes/Manager.html +2 -2
- data/spec/integration_specs/document_alamofire/after/docs/Classes/Manager/init(configuration:).html +2 -2
- data/spec/integration_specs/document_alamofire/after/docs/Classes/Request.html +2 -2
- data/spec/integration_specs/document_alamofire/after/docs/Enums.html +2 -2
- data/spec/integration_specs/document_alamofire/after/docs/Enums/ParameterEncoding.html +2 -2
- data/spec/integration_specs/document_alamofire/after/docs/Extensions.html +2 -2
- data/spec/integration_specs/document_alamofire/after/docs/Extensions/Manager.html +2 -2
- data/spec/integration_specs/document_alamofire/after/docs/Extensions/Request.html +2 -2
- data/spec/integration_specs/document_alamofire/after/docs/Functions.html +2 -2
- data/spec/integration_specs/document_alamofire/after/docs/Global Variables.html +2 -2
- data/spec/integration_specs/document_alamofire/after/docs/Protocols.html +2 -2
- data/spec/integration_specs/document_alamofire/after/docs/Protocols/URLRequestConvertible.html +2 -2
- data/spec/integration_specs/document_alamofire/after/docs/Protocols/URLStringConvertible.html +2 -2
- data/spec/integration_specs/document_alamofire/after/docs/css/jazzy.css +140 -257
- data/spec/integration_specs/document_alamofire/after/docs/index.html +2 -2
- data/spec/integration_specs/document_alamofire/after/execution_output.txt +2 -1
- data/spec/integration_specs/misc_jazzy_features/after/docs/Classes.html +2 -2
- data/spec/integration_specs/misc_jazzy_features/after/docs/Classes/ImplicitlyInternalTopLevelClass.html +2 -2
- data/spec/integration_specs/misc_jazzy_features/after/docs/Enums.html +2 -2
- data/spec/integration_specs/misc_jazzy_features/after/docs/Enums/DocumentedEnum.html +2 -2
- data/spec/integration_specs/misc_jazzy_features/after/docs/Global Variables.html +2 -2
- data/spec/integration_specs/misc_jazzy_features/after/docs/css/jazzy.css +140 -257
- data/spec/integration_specs/misc_jazzy_features/after/docs/index.html +2 -2
- data/spec/integration_specs/misc_jazzy_features/after/execution_output.txt +2 -1
- metadata +18 -4
- data/.rubocop_todo.yml +0 -24
@@ -11,14 +11,14 @@
|
|
11
11
|
<a title="MiscJazzyFeatures Reference"></a>
|
12
12
|
<header>
|
13
13
|
<div class="content-wrapper">
|
14
|
-
<p class="header-text"><a href="
|
14
|
+
<p class="header-text"><a href="index.html">MiscJazzyFeatures Docs</a> (81% documented)</p>
|
15
15
|
<p id="header-links"><a href="https://github.com/realm/jazzy"><img id="header-icon" src="img/gh.png" height="16px" width="16px" />View on GitHub</a></p>
|
16
16
|
</div>
|
17
17
|
</header>
|
18
18
|
<section id="valence">
|
19
19
|
<div class="content-wrapper">
|
20
20
|
<p id="hierarchial_navigation">
|
21
|
-
<a href="
|
21
|
+
<a href="index.html" id="design_resources_link">MiscJazzyFeatures Reference</a>
|
22
22
|
<img id="carat" src="img/carat.png" height="10px" width="6px" />
|
23
23
|
MiscJazzyFeatures Reference
|
24
24
|
</p>
|
@@ -1,5 +1,6 @@
|
|
1
1
|
JAZZY_FAKE_DATE=YYYY-MM-DD JAZZY_FAKE_VERSION=X.X.X jazzy -m MiscJazzyFeatures -a Realm -u https://github.com/realm/jazzy -g https://github.com/realm/jazzy 2>&1
|
2
2
|
Running xcodebuild -dry-run
|
3
3
|
parsing Classes.swift (1/1)
|
4
|
+
Classes.swift is 81% documented
|
4
5
|
building site
|
5
|
-
jam out ♪♫ to your fresh new docs
|
6
|
+
jam out ♪♫ to your fresh new docs in `docs`
|
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.0.
|
4
|
+
version: 0.0.14
|
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: 2014-11-
|
13
|
+
date: 2014-11-14 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: mustache
|
@@ -68,6 +68,20 @@ dependencies:
|
|
68
68
|
- - "~>"
|
69
69
|
- !ruby/object:Gem::Version
|
70
70
|
version: '1.6'
|
71
|
+
- !ruby/object:Gem::Dependency
|
72
|
+
name: sass
|
73
|
+
requirement: !ruby/object:Gem::Requirement
|
74
|
+
requirements:
|
75
|
+
- - "~>"
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '3.4'
|
78
|
+
type: :runtime
|
79
|
+
prerelease: false
|
80
|
+
version_requirements: !ruby/object:Gem::Requirement
|
81
|
+
requirements:
|
82
|
+
- - "~>"
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: '3.4'
|
71
85
|
- !ruby/object:Gem::Dependency
|
72
86
|
name: bundler
|
73
87
|
requirement: !ruby/object:Gem::Requirement
|
@@ -108,7 +122,6 @@ files:
|
|
108
122
|
- ".gitignore"
|
109
123
|
- ".gitmodules"
|
110
124
|
- ".rubocop.yml"
|
111
|
-
- ".rubocop_todo.yml"
|
112
125
|
- ".travis.yml"
|
113
126
|
- Gemfile
|
114
127
|
- Gemfile.lock
|
@@ -119,7 +132,7 @@ files:
|
|
119
132
|
- bin/sourcekitten
|
120
133
|
- jazzy.gemspec
|
121
134
|
- lib/jazzy.rb
|
122
|
-
- lib/jazzy/assets/css/jazzy.css
|
135
|
+
- lib/jazzy/assets/css/jazzy.css.scss
|
123
136
|
- lib/jazzy/assets/img/carat.png
|
124
137
|
- lib/jazzy/assets/img/dash.png
|
125
138
|
- lib/jazzy/assets/img/gh.png
|
@@ -137,6 +150,7 @@ files:
|
|
137
150
|
- lib/jazzy/partials/task.mustache
|
138
151
|
- lib/jazzy/partials/tasks.mustache
|
139
152
|
- lib/jazzy/source_declaration.rb
|
153
|
+
- lib/jazzy/source_module.rb
|
140
154
|
- lib/jazzy/sourcekitten.rb
|
141
155
|
- lib/jazzy/xml_helper.rb
|
142
156
|
- screenshot.jpg
|
data/.rubocop_todo.yml
DELETED
@@ -1,24 +0,0 @@
|
|
1
|
-
# This configuration was generated by `rubocop --auto-gen-config`
|
2
|
-
# on 2014-11-07 20:38:01 -0800 using RuboCop version 0.26.1.
|
3
|
-
# The point is for the user to remove these configuration records
|
4
|
-
# one by one as the offenses are removed from the code base.
|
5
|
-
# Note that changes in the inspected code, or installation of new
|
6
|
-
# versions of RuboCop, may require this file to be generated again.
|
7
|
-
|
8
|
-
# Offense count: 2
|
9
|
-
Metrics/CyclomaticComplexity:
|
10
|
-
Max: 9
|
11
|
-
|
12
|
-
# Offense count: 22
|
13
|
-
# Configuration parameters: AllowURI, URISchemes.
|
14
|
-
Metrics/LineLength:
|
15
|
-
Max: 151
|
16
|
-
|
17
|
-
# Offense count: 5
|
18
|
-
# Configuration parameters: CountComments.
|
19
|
-
Metrics/MethodLength:
|
20
|
-
Max: 56
|
21
|
-
|
22
|
-
# Offense count: 2
|
23
|
-
Metrics/PerceivedComplexity:
|
24
|
-
Max: 9
|