jazzy 0.13.7 → 0.14.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/.github/workflows/Tests.yml +2 -2
- data/.rubocop.yml +123 -24
- data/CHANGELOG.md +34 -0
- data/Dangerfile +11 -8
- data/Gemfile +3 -1
- data/Gemfile.lock +49 -34
- data/README.md +23 -11
- data/Rakefile +13 -12
- data/bin/jazzy +3 -2
- data/jazzy.gemspec +8 -6
- data/lib/jazzy.rb +2 -0
- data/lib/jazzy/config.rb +116 -69
- data/lib/jazzy/doc.rb +3 -1
- data/lib/jazzy/doc_builder.rb +63 -81
- data/lib/jazzy/docset_builder.rb +3 -1
- data/lib/jazzy/documentation_generator.rb +6 -2
- data/lib/jazzy/executable.rb +3 -0
- data/lib/jazzy/extensions/bitbucket/img/bitbucket.svg +11 -0
- data/lib/jazzy/{themes/apple/assets → extensions/github}/img/gh.png +0 -0
- data/lib/jazzy/extensions/gitlab/img/gitlab.svg +23 -0
- data/lib/jazzy/gem_version.rb +3 -1
- data/lib/jazzy/highlighter.rb +5 -3
- data/lib/jazzy/jazzy_markdown.rb +63 -30
- data/lib/jazzy/podspec_documenter.rb +14 -16
- data/lib/jazzy/search_builder.rb +4 -3
- data/lib/jazzy/source_declaration.rb +9 -3
- data/lib/jazzy/source_declaration/access_control_level.rb +7 -5
- data/lib/jazzy/source_declaration/type.rb +3 -1
- data/lib/jazzy/source_document.rb +8 -5
- data/lib/jazzy/source_host.rb +111 -0
- data/lib/jazzy/source_mark.rb +8 -6
- data/lib/jazzy/source_module.rb +6 -6
- data/lib/jazzy/sourcekitten.rb +98 -72
- data/lib/jazzy/stats.rb +4 -2
- data/lib/jazzy/symbol_graph.rb +15 -15
- data/lib/jazzy/symbol_graph/constraint.rb +5 -1
- data/lib/jazzy/symbol_graph/ext_node.rb +3 -1
- data/lib/jazzy/symbol_graph/graph.rb +13 -11
- data/lib/jazzy/symbol_graph/relationship.rb +3 -0
- data/lib/jazzy/symbol_graph/sym_node.rb +11 -6
- data/lib/jazzy/symbol_graph/symbol.rb +18 -15
- data/lib/jazzy/themes/apple/assets/css/highlight.css.scss +63 -59
- data/lib/jazzy/themes/apple/assets/css/jazzy.css.scss +5 -1
- data/lib/jazzy/themes/apple/assets/js/jazzy.js +4 -0
- data/lib/jazzy/themes/apple/assets/js/jazzy.search.js +4 -0
- data/lib/jazzy/themes/apple/templates/doc.mustache +3 -3
- data/lib/jazzy/themes/apple/templates/footer.mustache +1 -1
- data/lib/jazzy/themes/apple/templates/header.mustache +3 -3
- data/lib/jazzy/themes/apple/templates/task.mustache +3 -3
- data/lib/jazzy/themes/fullwidth/assets/css/highlight.css.scss +63 -59
- data/lib/jazzy/themes/fullwidth/assets/css/jazzy.css.scss +6 -2
- data/lib/jazzy/themes/fullwidth/assets/js/jazzy.js +4 -0
- data/lib/jazzy/themes/fullwidth/assets/js/jazzy.search.js +4 -0
- data/lib/jazzy/themes/fullwidth/templates/doc.mustache +3 -3
- data/lib/jazzy/themes/fullwidth/templates/footer.mustache +1 -1
- data/lib/jazzy/themes/fullwidth/templates/header.mustache +5 -5
- data/lib/jazzy/themes/fullwidth/templates/task.mustache +3 -3
- data/lib/jazzy/themes/jony/assets/css/highlight.css.scss +63 -59
- data/lib/jazzy/themes/jony/assets/css/jazzy.css.scss +5 -1
- data/lib/jazzy/themes/jony/assets/js/jazzy.js +4 -0
- data/lib/jazzy/themes/jony/templates/doc.mustache +3 -3
- data/lib/jazzy/themes/jony/templates/footer.mustache +1 -1
- data/lib/jazzy/themes/jony/templates/header.mustache +5 -5
- data/lib/jazzy/themes/jony/templates/task.mustache +3 -3
- data/spec/integration_spec.rb +39 -36
- data/spec/spec_helper.rb +3 -1
- data/spec/spec_helper/pre_flight.rb +2 -0
- metadata +27 -13
- data/lib/jazzy/themes/fullwidth/assets/img/gh.png +0 -0
- data/lib/jazzy/themes/jony/assets/img/gh.png +0 -0
- data/spec/sourcekitten_spec.rb +0 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f6b0e2553b3b64a0b692c79a6d62735a8f2e35d3322fe371bd926f050a8b0850
|
4
|
+
data.tar.gz: df8dd3fb4e80e0c9e69db6ec7f0337c5c9687a90a130bc899748ab789ee56d61
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b6d2956ca649999f8802d00c59fadd0b5e608a9f46a553c1b5c54cb9d49962d69336fcfe822bde691409770412bf484da4f73cf8405720dbfe24aa6096a9ca60
|
7
|
+
data.tar.gz: 036cb12b85c127721690e88295ac68ed5b25dee219c7c87f5933a20d4e2a285fa75acbc4496a97637f09ca07b4caee193aca783ee73ffdd110a9a02fbe064f00
|
data/.github/workflows/Tests.yml
CHANGED
@@ -13,7 +13,7 @@ jobs:
|
|
13
13
|
- uses: actions/checkout@v2
|
14
14
|
- uses: ruby/setup-ruby@v1
|
15
15
|
with:
|
16
|
-
ruby-version: 2.
|
16
|
+
ruby-version: 2.6
|
17
17
|
bundler-cache: true
|
18
18
|
- name: Danger
|
19
19
|
env:
|
@@ -25,7 +25,7 @@ jobs:
|
|
25
25
|
bundle exec rake rubocop
|
26
26
|
|
27
27
|
spec:
|
28
|
-
runs-on: macos-11
|
28
|
+
runs-on: macos-11
|
29
29
|
continue-on-error: true
|
30
30
|
strategy:
|
31
31
|
matrix:
|
data/.rubocop.yml
CHANGED
@@ -1,16 +1,92 @@
|
|
1
1
|
AllCops:
|
2
|
-
Include:
|
3
|
-
- ./Rakefile
|
4
|
-
- ./Gemfile
|
5
|
-
- ./*.gemspec
|
6
2
|
Exclude:
|
7
3
|
- ./spec/integration_specs/**/*
|
8
4
|
- ./vendor/**/*
|
9
5
|
- ./tmp/**/*
|
6
|
+
- ./SourceKitten/**/*
|
7
|
+
SuggestExtensions: false
|
8
|
+
TargetRubyVersion: 2.6
|
9
|
+
|
10
|
+
#- Pending Cops as of 1.19.0 ---------------------------------------------#
|
11
|
+
|
12
|
+
Gemspec/DateAssignment: # (new in 1.10)
|
13
|
+
Enabled: true
|
14
|
+
Layout/SpaceBeforeBrackets: # (new in 1.7)
|
15
|
+
Enabled: true
|
16
|
+
Lint/AmbiguousAssignment: # (new in 1.7)
|
17
|
+
Enabled: true
|
18
|
+
Lint/AmbiguousRange: # (new in 1.19)
|
19
|
+
Enabled: true
|
20
|
+
Lint/DeprecatedConstants: # (new in 1.8)
|
21
|
+
Enabled: true
|
22
|
+
Lint/DuplicateBranch: # (new in 1.3)
|
23
|
+
Enabled: true
|
24
|
+
Lint/DuplicateRegexpCharacterClassElement: # (new in 1.1)
|
25
|
+
Enabled: true
|
26
|
+
Lint/EmptyBlock: # (new in 1.1)
|
27
|
+
Enabled: true
|
28
|
+
Lint/EmptyClass: # (new in 1.3)
|
29
|
+
Enabled: true
|
30
|
+
Lint/EmptyInPattern: # (new in 1.16)
|
31
|
+
Enabled: true
|
32
|
+
Lint/LambdaWithoutLiteralBlock: # (new in 1.8)
|
33
|
+
Enabled: true
|
34
|
+
Lint/NoReturnInBeginEndBlocks: # (new in 1.2)
|
35
|
+
Enabled: true
|
36
|
+
Lint/NumberedParameterAssignment: # (new in 1.9)
|
37
|
+
Enabled: true
|
38
|
+
Lint/OrAssignmentToConstant: # (new in 1.9)
|
39
|
+
Enabled: true
|
40
|
+
Lint/RedundantDirGlobSort: # (new in 1.8)
|
41
|
+
Enabled: true
|
42
|
+
Lint/SymbolConversion: # (new in 1.9)
|
43
|
+
Enabled: true
|
44
|
+
Lint/ToEnumArguments: # (new in 1.1)
|
45
|
+
Enabled: true
|
46
|
+
Lint/TripleQuotes: # (new in 1.9)
|
47
|
+
Enabled: true
|
48
|
+
Lint/UnexpectedBlockArity: # (new in 1.5)
|
49
|
+
Enabled: true
|
50
|
+
Lint/UnmodifiedReduceAccumulator: # (new in 1.1)
|
51
|
+
Enabled: true
|
52
|
+
Naming/InclusiveLanguage: # (new in 1.18)
|
53
|
+
Enabled: true
|
54
|
+
Style/ArgumentsForwarding: # (new in 1.1)
|
55
|
+
Enabled: true
|
56
|
+
Style/CollectionCompact: # (new in 1.2)
|
57
|
+
Enabled: true
|
58
|
+
Style/DocumentDynamicEvalDefinition: # (new in 1.1)
|
59
|
+
Enabled: true
|
60
|
+
Style/EndlessMethod: # (new in 1.8)
|
61
|
+
Enabled: true
|
62
|
+
Style/HashConversion: # (new in 1.10)
|
63
|
+
Enabled: true
|
64
|
+
Style/HashExcept: # (new in 1.7)
|
65
|
+
Enabled: true
|
66
|
+
Style/IfWithBooleanLiteralBranches: # (new in 1.9)
|
67
|
+
Enabled: true
|
68
|
+
Style/InPatternThen: # (new in 1.16)
|
69
|
+
Enabled: true
|
70
|
+
Style/MultilineInPatternThen: # (new in 1.16)
|
71
|
+
Enabled: true
|
72
|
+
Style/NegatedIfElseCondition: # (new in 1.2)
|
73
|
+
Enabled: true
|
74
|
+
Style/NilLambda: # (new in 1.3)
|
75
|
+
Enabled: true
|
76
|
+
Style/QuotedSymbols: # (new in 1.16)
|
77
|
+
Enabled: true
|
78
|
+
Style/RedundantArgument: # (new in 1.4)
|
79
|
+
Enabled: true
|
80
|
+
Style/RedundantSelfAssignmentBranch: # (new in 1.19)
|
81
|
+
Enabled: true
|
82
|
+
Style/StringChars: # (new in 1.12)
|
83
|
+
Enabled: true
|
84
|
+
Style/SwapValues: # (new in 1.1)
|
85
|
+
Enabled: true
|
10
86
|
|
11
87
|
# At the moment not ready to be used
|
12
88
|
# https://github.com/bbatsov/rubocop/issues/947
|
13
|
-
Documentation:
|
89
|
+
Style/Documentation:
|
14
90
|
Enabled: false
|
15
91
|
|
16
92
|
#- Jazzy -----------------------------------------------------------------#
|
@@ -31,39 +107,40 @@ Metrics/BlockLength:
|
|
31
107
|
Style/NumericPredicate:
|
32
108
|
Enabled: false
|
33
109
|
|
34
|
-
Layout/
|
110
|
+
Layout/HeredocIndentation:
|
35
111
|
Enabled: false
|
36
112
|
|
37
113
|
# We adopted raise instead of fail.
|
38
|
-
SignalException:
|
114
|
+
Style/SignalException:
|
39
115
|
EnforcedStyle: only_raise
|
40
116
|
|
41
117
|
# They are idiomatic
|
42
|
-
AssignmentInCondition:
|
118
|
+
Lint/AssignmentInCondition:
|
43
119
|
Enabled: false
|
44
120
|
|
45
121
|
# Allow backticks
|
46
|
-
AsciiComments:
|
122
|
+
Style/AsciiComments:
|
47
123
|
Enabled: false
|
48
124
|
|
49
125
|
# Indentation clarifies logic branches in implementations
|
50
|
-
IfUnlessModifier:
|
126
|
+
Style/IfUnlessModifier:
|
51
127
|
Enabled: false
|
52
128
|
|
53
129
|
# No enforced convention here.
|
54
|
-
SingleLineBlockParams:
|
130
|
+
Style/SingleLineBlockParams:
|
55
131
|
Enabled: false
|
56
132
|
|
57
133
|
# We only add the comment when needed.
|
58
|
-
Encoding:
|
134
|
+
Style/Encoding:
|
59
135
|
Enabled: false
|
60
136
|
|
61
137
|
# Having these make it easier to *not* forget to add one when adding a new
|
62
138
|
# value and you can simply copy the previous line.
|
63
|
-
|
139
|
+
Style/TrailingCommaInArrayLiteral:
|
64
140
|
EnforcedStyleForMultiline: comma
|
65
|
-
|
66
|
-
|
141
|
+
Style/TrailingCommaInHashLiteral:
|
142
|
+
EnforcedStyleForMultiline: comma
|
143
|
+
Style/TrailingCommaInArguments:
|
67
144
|
EnforcedStyleForMultiline: comma
|
68
145
|
|
69
146
|
Style/SpecialGlobalVars:
|
@@ -78,40 +155,62 @@ Style/TrailingUnderscoreVariable:
|
|
78
155
|
|
79
156
|
# For lambdas nested within certain expressions, this rule forces either ugly
|
80
157
|
# parens or curly braces that violate the "do/end for multiline blocks" rule.
|
81
|
-
Lambda:
|
158
|
+
Style/Lambda:
|
82
159
|
Enabled: false
|
83
160
|
|
84
161
|
# Disallowing indented "when" clauses destroys readability when using the
|
85
162
|
# single-line "when/then" style.
|
86
|
-
CaseIndentation:
|
163
|
+
Layout/CaseIndentation:
|
87
164
|
Enabled: false
|
88
165
|
|
89
166
|
# These are both subjective judgements that depend on the situation, and are
|
90
167
|
# not appropriate as absolute rules.
|
91
|
-
GuardClause:
|
168
|
+
Style/GuardClause:
|
92
169
|
Enabled: false
|
93
|
-
Next:
|
170
|
+
Style/Next:
|
94
171
|
Enabled: false
|
95
172
|
|
96
|
-
|
173
|
+
# Avoid the least-readable varieties of regular expressions.
|
174
|
+
Style/RegexpLiteral:
|
97
175
|
EnforcedStyle: mixed
|
98
176
|
|
177
|
+
# Sometimes easier to read either way
|
178
|
+
Style/AccessorGrouping:
|
179
|
+
Enabled: false
|
180
|
+
|
181
|
+
# Avoid mandatory wide indentation
|
182
|
+
Layout/MultilineMethodCallIndentation:
|
183
|
+
EnforcedStyle: indented
|
184
|
+
Layout/LineEndStringConcatenationIndentation:
|
185
|
+
Enabled: true
|
186
|
+
EnforcedStyle: indented
|
187
|
+
|
188
|
+
# Avoid false positives with `Pathname`
|
189
|
+
Style/StringConcatenation:
|
190
|
+
Mode: conservative
|
191
|
+
|
192
|
+
# Compatibility with earlier Rubocops
|
193
|
+
Metrics/CyclomaticComplexity:
|
194
|
+
Max: 10
|
195
|
+
Metrics/PerceivedComplexity:
|
196
|
+
Max: 10
|
197
|
+
|
99
198
|
#- Jazzy specs -----------------------------------------------------------#
|
100
199
|
|
101
200
|
# Allow for `should.match /regexp/`.
|
102
|
-
AmbiguousRegexpLiteral:
|
201
|
+
Lint/AmbiguousRegexpLiteral:
|
103
202
|
Exclude:
|
104
203
|
- spec/**/*
|
105
204
|
|
106
205
|
# Allow `object.should == object` syntax.
|
107
|
-
Void:
|
206
|
+
Lint/Void:
|
108
207
|
Exclude:
|
109
208
|
- spec/**/*
|
110
209
|
|
111
|
-
ClassAndModuleChildren:
|
210
|
+
Style/ClassAndModuleChildren:
|
112
211
|
Exclude:
|
113
212
|
- spec/**/*
|
114
213
|
|
115
|
-
|
214
|
+
Lint/BinaryOperatorWithIdenticalOperands:
|
116
215
|
Exclude:
|
117
216
|
- spec/**/*
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,37 @@
|
|
1
|
+
## 0.14.0
|
2
|
+
|
3
|
+
##### Breaking
|
4
|
+
|
5
|
+
* Require at least Ruby 2.6.3.
|
6
|
+
|
7
|
+
##### Enhancements
|
8
|
+
|
9
|
+
* Support DocC-style autolinks and callouts in markdown.
|
10
|
+
[John Fairhurst](https://github.com/johnfairh)
|
11
|
+
|
12
|
+
* Add `--source-host` option to support projects hosted on GitLab and
|
13
|
+
Bitbucket as well as GitHub. Options `--source-host-url` and
|
14
|
+
`--source-host-files-url` and new Mustache tags replace the 'github' versions
|
15
|
+
which remain as back-compatibility aliases.
|
16
|
+
[John Fairhurst](https://github.com/johnfairh)
|
17
|
+
[#314](https://github.com/realm/jazzy/issues/314)
|
18
|
+
|
19
|
+
* Add `rel="noopener"` to all `target="_blank"` links.
|
20
|
+
[JP Simard](https://github.com/jpsim)
|
21
|
+
|
22
|
+
##### Bug Fixes
|
23
|
+
|
24
|
+
* Fix source-host line number references in Swift symbolgraph mode, and
|
25
|
+
in ObjC mode for references to one-line declarations.
|
26
|
+
[John Fairhurst](https://github.com/johnfairh)
|
27
|
+
|
28
|
+
* Fix crash with `` ` ` `` in markdown.
|
29
|
+
[John Fairhurst](https://github.com/johnfairh)
|
30
|
+
[#1270](https://github.com/realm/jazzy/issues/1270)
|
31
|
+
|
32
|
+
* Fix symbolgraph mode with Xcode 13.
|
33
|
+
[John Fairhurst](https://github.com/johnfairh)
|
34
|
+
|
1
35
|
## 0.13.7
|
2
36
|
|
3
37
|
The next release of Jazzy will require a minimum of Ruby 2.6.
|
data/Dangerfile
CHANGED
@@ -1,13 +1,16 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# Warn when there is a big PR
|
2
|
-
warn(
|
4
|
+
warn('Big PR') if git.lines_of_code > 500
|
3
5
|
|
4
6
|
# Don't let testing shortcuts get into master by accident
|
5
|
-
(git.modified_files + git.added_files - %w
|
7
|
+
(git.modified_files + git.added_files - %w[Dangerfile]).each do |file|
|
6
8
|
next unless File.file?(file)
|
9
|
+
|
7
10
|
contents = File.read(file)
|
8
11
|
if file.start_with?('spec')
|
9
|
-
|
10
|
-
|
12
|
+
failure("`xit` or `fit` left in tests (#{file})") if contents =~ /^\w*[xf]it/
|
13
|
+
failure("`fdescribe` left in tests (#{file})") if contents =~ /^\w*fdescribe/
|
11
14
|
end
|
12
15
|
end
|
13
16
|
|
@@ -17,12 +20,12 @@ has_app_changes = !git.modified_files.grep(/lib/).empty?
|
|
17
20
|
has_test_changes = !git.modified_files.grep(/spec/).empty?
|
18
21
|
|
19
22
|
# Add a CHANGELOG entry for app changes
|
20
|
-
if !git.modified_files.include?(
|
21
|
-
|
22
|
-
message
|
23
|
+
if !git.modified_files.include?('CHANGELOG.md') && has_app_changes
|
24
|
+
failure "Please include a CHANGELOG entry. \nYou can find it at [CHANGELOG.md](https://github.com/realm/jazzy/blob/master/CHANGELOG.md)."
|
25
|
+
message 'Note, we hard-wrap at 80 chars and use 2 spaces after the last line.'
|
23
26
|
end
|
24
27
|
|
25
28
|
# Non-trivial amounts of app changes without tests
|
26
29
|
if git.lines_of_code > 50 && has_app_changes && !has_test_changes
|
27
|
-
|
30
|
+
warn 'This PR may need tests.'
|
28
31
|
end
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,11 +1,12 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
jazzy (0.
|
4
|
+
jazzy (0.14.0)
|
5
5
|
cocoapods (~> 1.5)
|
6
6
|
mustache (~> 1.1)
|
7
|
-
open4
|
7
|
+
open4 (~> 1.3)
|
8
8
|
redcarpet (~> 3.4)
|
9
|
+
rexml (~> 3.2)
|
9
10
|
rouge (>= 2.0.6, < 4.0)
|
10
11
|
sassc (~> 2.1)
|
11
12
|
sqlite3 (~> 1.3)
|
@@ -20,7 +21,7 @@ GEM
|
|
20
21
|
i18n (>= 0.7, < 2)
|
21
22
|
minitest (~> 5.1)
|
22
23
|
tzinfo (~> 1.1)
|
23
|
-
addressable (2.
|
24
|
+
addressable (2.8.0)
|
24
25
|
public_suffix (>= 2.0.2, < 5.0)
|
25
26
|
algoliasearch (1.27.5)
|
26
27
|
httpclient (~> 2.8, >= 2.8.3)
|
@@ -36,10 +37,10 @@ GEM
|
|
36
37
|
clintegracon (0.7.0)
|
37
38
|
colored (~> 1.2)
|
38
39
|
diffy
|
39
|
-
cocoapods (1.10.
|
40
|
+
cocoapods (1.10.2)
|
40
41
|
addressable (~> 2.6)
|
41
42
|
claide (>= 1.0.2, < 2.0)
|
42
|
-
cocoapods-core (= 1.10.
|
43
|
+
cocoapods-core (= 1.10.2)
|
43
44
|
cocoapods-deintegrate (>= 1.0.3, < 2.0)
|
44
45
|
cocoapods-downloader (>= 1.4.0, < 2.0)
|
45
46
|
cocoapods-plugins (>= 1.0.0, < 2.0)
|
@@ -54,7 +55,7 @@ GEM
|
|
54
55
|
nap (~> 1.0)
|
55
56
|
ruby-macho (~> 1.4)
|
56
57
|
xcodeproj (>= 1.19.0, < 2.0)
|
57
|
-
cocoapods-core (1.10.
|
58
|
+
cocoapods-core (1.10.2)
|
58
59
|
activesupport (> 5.0, < 6)
|
59
60
|
addressable (~> 2.6)
|
60
61
|
algoliasearch (~> 1.0)
|
@@ -68,19 +69,19 @@ GEM
|
|
68
69
|
cocoapods-downloader (1.4.0)
|
69
70
|
cocoapods-plugins (1.0.0)
|
70
71
|
nap
|
71
|
-
cocoapods-search (1.0.
|
72
|
+
cocoapods-search (1.0.1)
|
72
73
|
cocoapods-trunk (1.5.0)
|
73
74
|
nap (>= 0.8, < 2.0)
|
74
75
|
netrc (~> 0.11)
|
75
76
|
cocoapods-try (1.2.0)
|
76
77
|
colored (1.2)
|
77
78
|
colored2 (3.1.2)
|
78
|
-
concurrent-ruby (1.1.
|
79
|
+
concurrent-ruby (1.1.9)
|
79
80
|
cork (0.3.0)
|
80
81
|
colored2 (~> 3.1)
|
81
82
|
crack (0.4.5)
|
82
83
|
rexml
|
83
|
-
danger (8.
|
84
|
+
danger (8.3.1)
|
84
85
|
claide (~> 1.0)
|
85
86
|
claide-plugins (>= 0.9.2)
|
86
87
|
colored2 (~> 3.1)
|
@@ -97,22 +98,32 @@ GEM
|
|
97
98
|
escape (0.0.4)
|
98
99
|
ethon (0.14.0)
|
99
100
|
ffi (>= 1.15.0)
|
100
|
-
faraday (1.
|
101
|
+
faraday (1.7.0)
|
102
|
+
faraday-em_http (~> 1.0)
|
103
|
+
faraday-em_synchrony (~> 1.0)
|
101
104
|
faraday-excon (~> 1.1)
|
105
|
+
faraday-httpclient (~> 1.0.1)
|
102
106
|
faraday-net_http (~> 1.0)
|
103
107
|
faraday-net_http_persistent (~> 1.1)
|
108
|
+
faraday-patron (~> 1.0)
|
109
|
+
faraday-rack (~> 1.0)
|
104
110
|
multipart-post (>= 1.2, < 3)
|
105
111
|
ruby2_keywords (>= 0.0.4)
|
112
|
+
faraday-em_http (1.0.0)
|
113
|
+
faraday-em_synchrony (1.0.0)
|
106
114
|
faraday-excon (1.1.0)
|
107
115
|
faraday-http-cache (2.2.0)
|
108
116
|
faraday (>= 0.8)
|
117
|
+
faraday-httpclient (1.0.1)
|
109
118
|
faraday-net_http (1.0.1)
|
110
|
-
faraday-net_http_persistent (1.
|
111
|
-
|
119
|
+
faraday-net_http_persistent (1.2.0)
|
120
|
+
faraday-patron (1.0.0)
|
121
|
+
faraday-rack (1.0.0)
|
122
|
+
ffi (1.15.3)
|
112
123
|
fourflusher (2.3.1)
|
113
124
|
fuzzy_match (2.0.4)
|
114
125
|
gh_inspector (1.1.3)
|
115
|
-
git (1.
|
126
|
+
git (1.9.1)
|
116
127
|
rchardet (~> 1.8)
|
117
128
|
hashdiff (1.0.1)
|
118
129
|
httpclient (2.8.3)
|
@@ -125,7 +136,7 @@ GEM
|
|
125
136
|
kramdown (~> 2.0)
|
126
137
|
liferaft (0.0.6)
|
127
138
|
minitest (5.14.4)
|
128
|
-
mocha (1.
|
139
|
+
mocha (1.13.0)
|
129
140
|
mocha-on-bacon (0.2.3)
|
130
141
|
mocha (>= 0.13.0)
|
131
142
|
molinillo (0.6.6)
|
@@ -140,62 +151,66 @@ GEM
|
|
140
151
|
sawyer (~> 0.8.0, >= 0.5.3)
|
141
152
|
open4 (1.3.4)
|
142
153
|
parallel (1.20.1)
|
143
|
-
parser (
|
154
|
+
parser (3.0.2.0)
|
144
155
|
ast (~> 2.4.1)
|
145
|
-
powerpack (0.1.3)
|
146
156
|
prettybacon (0.0.2)
|
147
157
|
bacon (~> 1.2)
|
148
158
|
public_suffix (4.0.6)
|
149
|
-
rainbow (
|
150
|
-
|
151
|
-
rake (13.0.3)
|
159
|
+
rainbow (3.0.0)
|
160
|
+
rake (13.0.6)
|
152
161
|
rchardet (1.8.0)
|
153
162
|
redcarpet (3.5.1)
|
163
|
+
regexp_parser (2.1.1)
|
154
164
|
rexml (3.2.5)
|
155
165
|
rouge (3.26.0)
|
156
|
-
rubocop (
|
166
|
+
rubocop (1.19.0)
|
157
167
|
parallel (~> 1.10)
|
158
|
-
parser (>=
|
159
|
-
|
160
|
-
|
168
|
+
parser (>= 3.0.0.0)
|
169
|
+
rainbow (>= 2.2.2, < 4.0)
|
170
|
+
regexp_parser (>= 1.8, < 3.0)
|
171
|
+
rexml
|
172
|
+
rubocop-ast (>= 1.9.1, < 2.0)
|
161
173
|
ruby-progressbar (~> 1.7)
|
162
|
-
unicode-display_width (
|
174
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
175
|
+
rubocop-ast (1.10.0)
|
176
|
+
parser (>= 3.0.1.1)
|
163
177
|
ruby-macho (1.4.0)
|
164
178
|
ruby-progressbar (1.11.0)
|
165
|
-
ruby2_keywords (0.0.
|
179
|
+
ruby2_keywords (0.0.5)
|
166
180
|
sassc (2.4.0)
|
167
181
|
ffi (~> 1.9)
|
168
182
|
sawyer (0.8.2)
|
169
183
|
addressable (>= 2.3.5)
|
170
184
|
faraday (> 0.8, < 2.0)
|
171
185
|
sqlite3 (1.4.2)
|
172
|
-
terminal-table (3.0.
|
173
|
-
unicode-display_width (
|
186
|
+
terminal-table (3.0.1)
|
187
|
+
unicode-display_width (>= 1.1.1, < 3)
|
174
188
|
thread_safe (0.3.6)
|
175
189
|
typhoeus (1.4.0)
|
176
190
|
ethon (>= 0.9.0)
|
177
191
|
tzinfo (1.2.9)
|
178
192
|
thread_safe (~> 0.1)
|
179
|
-
unicode-display_width (
|
180
|
-
webmock (3.
|
181
|
-
addressable (>= 2.
|
193
|
+
unicode-display_width (2.0.0)
|
194
|
+
webmock (3.14.0)
|
195
|
+
addressable (>= 2.8.0)
|
182
196
|
crack (>= 0.3.2)
|
183
197
|
hashdiff (>= 0.4.0, < 2.0.0)
|
184
198
|
xcinvoke (0.3.0)
|
185
199
|
liferaft (~> 0.0.6)
|
186
|
-
xcodeproj (1.
|
200
|
+
xcodeproj (1.21.0)
|
187
201
|
CFPropertyList (>= 2.3.3, < 4.0)
|
188
202
|
atomos (~> 0.1.3)
|
189
203
|
claide (>= 1.0.2, < 2.0)
|
190
204
|
colored2 (~> 3.1)
|
191
205
|
nanaimo (~> 0.3.0)
|
206
|
+
rexml (~> 3.2.4)
|
192
207
|
|
193
208
|
PLATFORMS
|
194
209
|
ruby
|
195
210
|
|
196
211
|
DEPENDENCIES
|
197
212
|
bacon
|
198
|
-
bundler (~> 1
|
213
|
+
bundler (~> 2.1)
|
199
214
|
clintegracon (= 0.7.0)
|
200
215
|
danger
|
201
216
|
diffy
|
@@ -204,8 +219,8 @@ DEPENDENCIES
|
|
204
219
|
mocha-on-bacon
|
205
220
|
prettybacon
|
206
221
|
rake (~> 13.0)
|
207
|
-
rubocop (
|
222
|
+
rubocop (~> 1.18)
|
208
223
|
webmock
|
209
224
|
|
210
225
|
BUNDLED WITH
|
211
|
-
|
226
|
+
2.2.22
|