jazzy 0.14.3 → 0.15.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (54) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/Tests.yml +9 -8
  3. data/.rubocop.yml +75 -1
  4. data/CHANGELOG.md +74 -0
  5. data/CONTRIBUTING.md +1 -1
  6. data/Gemfile +1 -1
  7. data/Gemfile.lock +88 -83
  8. data/README.md +198 -16
  9. data/Rakefile +1 -1
  10. data/bin/sourcekitten +0 -0
  11. data/jazzy.gemspec +1 -1
  12. data/js/package-lock.json +13 -46
  13. data/js/package.json +2 -2
  14. data/lib/jazzy/config.rb +157 -25
  15. data/lib/jazzy/doc.rb +2 -2
  16. data/lib/jazzy/doc_builder.rb +55 -29
  17. data/lib/jazzy/doc_index.rb +185 -0
  18. data/lib/jazzy/docset_builder/info_plist.mustache +1 -1
  19. data/lib/jazzy/docset_builder.rb +44 -13
  20. data/lib/jazzy/extensions/katex/css/katex.min.css +1 -1
  21. data/lib/jazzy/extensions/katex/js/katex.min.js +1 -1
  22. data/lib/jazzy/gem_version.rb +1 -1
  23. data/lib/jazzy/grouper.rb +130 -0
  24. data/lib/jazzy/podspec_documenter.rb +1 -1
  25. data/lib/jazzy/search_builder.rb +1 -1
  26. data/lib/jazzy/source_declaration/access_control_level.rb +52 -64
  27. data/lib/jazzy/source_declaration/type.rb +14 -2
  28. data/lib/jazzy/source_declaration.rb +69 -8
  29. data/lib/jazzy/source_document.rb +5 -1
  30. data/lib/jazzy/source_module.rb +13 -11
  31. data/lib/jazzy/sourcekitten.rb +247 -238
  32. data/lib/jazzy/stats.rb +1 -1
  33. data/lib/jazzy/symbol_graph/constraint.rb +6 -1
  34. data/lib/jazzy/symbol_graph/ext_key.rb +37 -0
  35. data/lib/jazzy/symbol_graph/ext_node.rb +23 -6
  36. data/lib/jazzy/symbol_graph/graph.rb +31 -19
  37. data/lib/jazzy/symbol_graph/relationship.rb +21 -3
  38. data/lib/jazzy/symbol_graph/sym_node.rb +10 -22
  39. data/lib/jazzy/symbol_graph/symbol.rb +30 -1
  40. data/lib/jazzy/symbol_graph.rb +20 -17
  41. data/lib/jazzy/themes/apple/assets/css/jazzy.css.scss +10 -7
  42. data/lib/jazzy/themes/apple/assets/js/jquery.min.js +2 -2
  43. data/lib/jazzy/themes/apple/assets/js/typeahead.jquery.js +3 -2
  44. data/lib/jazzy/themes/apple/templates/doc.mustache +8 -1
  45. data/lib/jazzy/themes/fullwidth/assets/css/jazzy.css.scss +5 -5
  46. data/lib/jazzy/themes/fullwidth/assets/js/jquery.min.js +2 -2
  47. data/lib/jazzy/themes/fullwidth/assets/js/typeahead.jquery.js +3 -2
  48. data/lib/jazzy/themes/fullwidth/templates/doc.mustache +8 -1
  49. data/lib/jazzy/themes/jony/assets/css/jazzy.css.scss +6 -5
  50. data/lib/jazzy/themes/jony/assets/js/jquery.min.js +2 -2
  51. data/lib/jazzy/themes/jony/templates/doc.mustache +9 -2
  52. data/spec/Moya.podspec +55 -0
  53. data/spec/integration_spec.rb +26 -4
  54. metadata +9 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3e164bb425f5dbce55a0705ce07038b3b34fd5a055dd1a6d309250665cabb25f
4
- data.tar.gz: 770f2055c954dfea38085151f571669be2013458f370556808f165b537fc4cf9
3
+ metadata.gz: a4e56611ebbc1fd23b15eb87740d56ca89523b6d98a9d1c7a8219fdc62e8b3d4
4
+ data.tar.gz: d3ffb914f1df703944287fa69b00e4c68b734076eeb825a2ab59857f27d28f6d
5
5
  SHA512:
6
- metadata.gz: a1d8ffd5b6bc1ed5637698a73c18918989105486d1da0198ba35450c7b9943802eaa4e5e31dde0d6fdaa54a6472fca85a8dbbbb3367db4be0de7a1ff80123333
7
- data.tar.gz: c63d5645be9de11716c7b301bdc196749afdb841719010dc3a20f15ec3380a3acf61b220b976b4c5247f22a1368b4db9f6d1b4ff67a81d76c312e9f6c8be8964
6
+ metadata.gz: c3418c7fe4eb7f9d1a83316fc3df22d0e7c87f42487f74ab62cc94e3b47e6e6c644327ef59ea5e4abae9a074b8adcf63da3c757df421a888220cdd4b039c6e5c
7
+ data.tar.gz: 2c28f8a6b6b8f4537cf35b30bfb89690ac5efd9b492a420b1bd1bb7184e8a665c91ae6ca31e473cce386bee30c1001cc4d90900a5b914b6da0aa6cc8072668e7
@@ -10,10 +10,10 @@ jobs:
10
10
  danger_and_rubocop:
11
11
  runs-on: ubuntu-latest
12
12
  steps:
13
- - uses: actions/checkout@v2
13
+ - uses: actions/checkout@v4
14
14
  - uses: ruby/setup-ruby@v1
15
15
  with:
16
- ruby-version: 2.6
16
+ ruby-version: 3.2
17
17
  bundler-cache: true
18
18
  - name: Rubocop
19
19
  run: |
@@ -25,23 +25,24 @@ jobs:
25
25
  bundle exec danger --verbose
26
26
 
27
27
  spec:
28
- runs-on: macos-12
28
+ runs-on: macos-14
29
29
  continue-on-error: true
30
30
  strategy:
31
31
  matrix:
32
32
  spec: ["objc_spec", "swift_spec", "cocoapods_spec"]
33
- env:
34
- DEVELOPER_DIR: /Applications/Xcode_14.0.app/Contents/Developer
35
33
  steps:
36
- - uses: actions/checkout@v2
34
+ - uses: actions/checkout@v4
37
35
  with:
38
36
  submodules: recursive
37
+ - uses: maxim-lobanov/setup-xcode@v1
38
+ with:
39
+ xcode-version: 15.3
39
40
  - uses: ruby/setup-ruby@v1
40
41
  with:
41
- ruby-version: 2.6
42
+ ruby-version: 3.2
42
43
  bundler-cache: true
43
44
  - name: Cache cocoapods
44
- uses: actions/cache@v2
45
+ uses: actions/cache@v3
45
46
  env:
46
47
  cache-name: cocoapods
47
48
  with:
data/.rubocop.yml CHANGED
@@ -1,16 +1,19 @@
1
1
  AllCops:
2
2
  Exclude:
3
3
  - ./spec/integration_specs/**/*
4
+ - ./spec/Moya.podspec
4
5
  - ./vendor/**/*
5
6
  - ./tmp/**/*
6
7
  - ./SourceKitten/**/*
7
8
  SuggestExtensions: false
8
9
  TargetRubyVersion: 2.6
9
10
 
10
- #- Pending Cops as of 1.36.0 ---------------------------------------------#
11
+ #- Pending Cops as of 1.56.3 ---------------------------------------------#
11
12
 
12
13
  Gemspec/DeprecatedAttributeAssignment: # new in 1.30
13
14
  Enabled: true
15
+ Gemspec/DevelopmentDependencies: # new in 1.44
16
+ Enabled: false
14
17
  Gemspec/RequireMFA: # new in 1.23
15
18
  Enabled: true
16
19
  Layout/LineContinuationLeadingSpace: # new in 1.31
@@ -29,6 +32,10 @@ Lint/DeprecatedConstants: # (new in 1.8)
29
32
  Enabled: true
30
33
  Lint/DuplicateBranch: # (new in 1.3)
31
34
  Enabled: true
35
+ Lint/DuplicateMagicComment: # new in 1.37
36
+ Enabled: true
37
+ Lint/DuplicateMatchPattern: # new in 1.50
38
+ Enabled: true
32
39
  Lint/DuplicateRegexpCharacterClassElement: # (new in 1.1)
33
40
  Enabled: true
34
41
  Lint/EmptyBlock: # (new in 1.1)
@@ -39,8 +46,14 @@ Lint/EmptyInPattern: # (new in 1.16)
39
46
  Enabled: true
40
47
  Lint/IncompatibleIoSelectWithFiberScheduler: # new in 1.21
41
48
  Enabled: true
49
+ Lint/ItWithoutArgumentsInBlock: # new in 1.59
50
+ Enabled: true
42
51
  Lint/LambdaWithoutLiteralBlock: # (new in 1.8)
43
52
  Enabled: true
53
+ Lint/LiteralAssignmentInCondition: # new in 1.58
54
+ Enabled: true
55
+ Lint/MixedCaseRange: # new in 1.53
56
+ Enabled: true
44
57
  Lint/NonAtomicFileOperation: # new in 1.31
45
58
  Enabled: true
46
59
  Lint/NoReturnInBeginEndBlocks: # (new in 1.2)
@@ -51,6 +64,8 @@ Lint/OrAssignmentToConstant: # (new in 1.9)
51
64
  Enabled: true
52
65
  Lint/RedundantDirGlobSort: # (new in 1.8)
53
66
  Enabled: true
67
+ Lint/RedundantRegexpQuantifiers: # new in 1.53
68
+ Enabled: true
54
69
  Lint/RefinementImportMethods: # new in 1.27
55
70
  Enabled: true
56
71
  Lint/RequireRangeParentheses: # new in 1.32
@@ -67,20 +82,34 @@ Lint/UnexpectedBlockArity: # (new in 1.5)
67
82
  Enabled: true
68
83
  Lint/UnmodifiedReduceAccumulator: # (new in 1.1)
69
84
  Enabled: true
85
+ Lint/UselessRescue: # new in 1.43
86
+ Enabled: true
70
87
  Lint/UselessRuby2Keywords: # new in 1.23
71
88
  Enabled: true
89
+ Metrics/CollectionLiteralLength: # new in 1.47
90
+ Enabled: true
72
91
  Naming/BlockForwarding: # new in 1.24
73
92
  Enabled: true
74
93
  Naming/InclusiveLanguage: # (new in 1.18)
75
94
  Enabled: true
76
95
  Security/CompoundHash: # new in 1.28
77
96
  Enabled: true
97
+ Style/ConcatArrayLiterals: # new in 1.41
98
+ Enabled: true
78
99
  Security/IoMethods: # new in 1.22
79
100
  Enabled: true
80
101
  Style/ArgumentsForwarding: # (new in 1.1)
81
102
  Enabled: true
103
+ Style/ArrayIntersect: # new in 1.40
104
+ Enabled: true
82
105
  Style/CollectionCompact: # (new in 1.2)
83
106
  Enabled: true
107
+ Style/ComparableClamp: # new in 1.44
108
+ Enabled: true
109
+ Style/DataInheritance: # new in 1.49
110
+ Enabled: true
111
+ Style/DirEmpty: # new in 1.48
112
+ Enabled: true
84
113
  Style/DocumentDynamicEvalDefinition: # (new in 1.1)
85
114
  Enabled: true
86
115
  Style/EmptyHeredoc: # new in 1.32
@@ -89,8 +118,12 @@ Style/EndlessMethod: # (new in 1.8)
89
118
  Enabled: true
90
119
  Style/EnvHome: # new in 1.29
91
120
  Enabled: true
121
+ Style/ExactRegexpMatch: # new in 1.51
122
+ Enabled: true
92
123
  Style/FetchEnvVar: # new in 1.28
93
124
  Enabled: true
125
+ Style/FileEmpty: # new in 1.48
126
+ Enabled: true
94
127
  Style/FileRead: # new in 1.24
95
128
  Enabled: true
96
129
  Style/FileWrite: # new in 1.24
@@ -107,8 +140,14 @@ Style/MagicCommentFormat: # new in 1.35
107
140
  Enabled: true
108
141
  Style/MapCompactWithConditionalBlock: # new in 1.30
109
142
  Enabled: true
143
+ Style/MapIntoArray: # new in 1.63
144
+ Enabled: true
110
145
  Style/MapToHash: # new in 1.24
111
146
  Enabled: true
147
+ Style/MapToSet: # new in 1.42
148
+ Enabled: true
149
+ Style/MinMaxComparison: # new in 1.42
150
+ Enabled: true
112
151
  Style/MultilineInPatternThen: # (new in 1.16)
113
152
  Enabled: true
114
153
  Style/NegatedIfElseCondition: # (new in 1.2)
@@ -125,20 +164,52 @@ Style/ObjectThen: # new in 1.28
125
164
  Enabled: true
126
165
  Style/OpenStructUse: # new in 1.23
127
166
  Enabled: true
167
+ Style/OperatorMethodCall: # new in 1.37
168
+ Enabled: true
128
169
  Style/QuotedSymbols: # (new in 1.16)
129
170
  Enabled: true
130
171
  Style/RedundantArgument: # (new in 1.4)
131
172
  Enabled: true
173
+ Style/RedundantArrayConstructor: # new in 1.52
174
+ Enabled: true
175
+ Style/RedundantConstantBase: # new in 1.40
176
+ Enabled: true
177
+ Style/RedundantCurrentDirectoryInPath: # new in 1.53
178
+ Enabled: true
179
+ Style/RedundantDoubleSplatHashBraces: # new in 1.41
180
+ Enabled: true
181
+ Style/RedundantEach: # new in 1.38
182
+ Enabled: true
183
+ Style/RedundantFilterChain: # new in 1.52
184
+ Enabled: true
185
+ Style/RedundantHeredocDelimiterQuotes: # new in 1.45
186
+ Enabled: true
132
187
  Style/RedundantInitialize: # new in 1.27
133
188
  Enabled: true
189
+ Style/RedundantLineContinuation: # new in 1.49
190
+ Enabled: true
191
+ Style/RedundantRegexpArgument: # new in 1.53
192
+ Enabled: true
193
+ Style/RedundantRegexpConstructor: # new in 1.52
194
+ Enabled: true
134
195
  Style/RedundantSelfAssignmentBranch: # (new in 1.19)
135
196
  Enabled: true
197
+ Style/RedundantStringEscape: # new in 1.37
198
+ Enabled: true
199
+ Style/ReturnNilInPredicateMethodDefinition: # new in 1.53
200
+ Enabled: true
136
201
  Style/SelectByRegexp: # new in 1.22
137
202
  Enabled: true
203
+ Style/SingleLineDoEndBlock: # new in 1.57
204
+ Enabled: true
138
205
  Style/StringChars: # (new in 1.12)
139
206
  Enabled: true
207
+ Style/SuperWithArgsParentheses: # new in 1.58
208
+ Enabled: true
140
209
  Style/SwapValues: # (new in 1.1)
141
210
  Enabled: true
211
+ Style/YAMLFileRead: # new in 1.53
212
+ Enabled: true
142
213
 
143
214
  # At the moment not ready to be used
144
215
  # https://github.com/bbatsov/rubocop/issues/947
@@ -160,6 +231,9 @@ Metrics/ModuleLength:
160
231
  Metrics/BlockLength:
161
232
  Enabled: false
162
233
 
234
+ Metrics/ParameterLists:
235
+ CountKeywordArgs: false
236
+
163
237
  Style/NumericPredicate:
164
238
  Enabled: false
165
239
 
data/CHANGELOG.md CHANGED
@@ -1,3 +1,77 @@
1
+ ## 0.15.0
2
+
3
+ ##### Breaking
4
+
5
+ * None.
6
+
7
+ ##### Enhancements
8
+
9
+ * Update Javascript: typeahead.js 1.3.4, KaTeX 0.16.10
10
+ [John Fairhurst](https://github.com/johnfairh)
11
+
12
+ * Support Swift 5.10 with Swift Package Manager projects.
13
+ [John Fairhurst](https://github.com/johnfairh)
14
+ [#1381](https://github.com/realm/jazzy/issues/1381)
15
+
16
+ * Support documentation of multiple modules in a single website. Use
17
+ `--modules` or the config-file `modules` for more control. See the
18
+ README 'Documenting multiple modules' for more details.
19
+ [Argjira Mala](https://github.com/argjiramala-tomtom)
20
+ [Pedro Alcobia](https://github.com/PedroAlcobia-TomTom)
21
+ [John Fairhurst](https://github.com/johnfairh)
22
+ [#564](https://github.com/realm/jazzy/issues/564)
23
+
24
+ * Improve page breadcrumbs to include parent pages and indicate source module
25
+ of extensions from other modules.
26
+ [John Fairhurst](https://github.com/johnfairh)
27
+
28
+ * Add `--readme-title` and `--docset-title` to set the titles of the readme
29
+ docs page and the Dash docset independently of the module name.
30
+ [John Fairhurst](https://github.com/johnfairh)
31
+
32
+ * Support Swift 5.9 symbolgraph extension symbols.
33
+ [John Fairhurst](https://github.com/johnfairh)
34
+ [#1368](https://github.com/realm/jazzy/issues/1368)
35
+
36
+ ##### Bug Fixes
37
+
38
+ * Fix incorrect activesupport usage.
39
+ [John Fairhurst](https://github.com/johnfairh)
40
+
41
+ ## 0.14.4
42
+
43
+ ##### Breaking
44
+
45
+ * None.
46
+
47
+ ##### Enhancements
48
+
49
+ * Update Javascript: jQuery 3.7.1, KaTeX 0.16.8
50
+ [John Fairhurst](https://github.com/johnfairh)
51
+
52
+ * Support Swift `package` access control level.
53
+ [John Fairhurst](https://github.com/johnfairh)
54
+
55
+ * Initial support for Swift macro declarations. Requires
56
+ `--swift-build-tool symbolgraph`.
57
+ [John Fairhurst](https://github.com/johnfairh)
58
+
59
+ * Support Swift `@_documentation(visibility:)` attribute. Requires
60
+ `--swift-build-tool spm|xcodebuild`.
61
+ [John Fairhurst](https://github.com/johnfairh)
62
+
63
+ ##### Bug Fixes
64
+
65
+ * Issue a warning instead of crashing on declarations without names.
66
+ [#1325](https://github.com/realm/jazzy/issues/1325)
67
+ [John Fairhurst](https://github.com/johnfairh)
68
+
69
+ * Fix extension ordering in symbolgraph mode.
70
+ [John Fairhurst](https://github.com/johnfairh)
71
+
72
+ * Fix symbolgraph mode crash involving tuple generic constraints.
73
+ [John Fairhurst](https://github.com/johnfairh)
74
+
1
75
  ## 0.14.3
2
76
 
3
77
  ##### Breaking
data/CONTRIBUTING.md CHANGED
@@ -49,7 +49,7 @@ git push
49
49
  You'll need push access to the integration specs repo to do this. You can
50
50
  request access from one of the maintainers when filing your PR.
51
51
 
52
- You must have Xcode 14 installed to build the integration specs.
52
+ You must have Xcode 15.3 installed to build the integration specs.
53
53
 
54
54
  ## Making changes to SourceKitten
55
55
 
data/Gemfile CHANGED
@@ -16,7 +16,7 @@ group :development do
16
16
  gem 'webmock'
17
17
 
18
18
  # Integration tests
19
- gem 'clintegracon', '0.7.0'
19
+ gem 'clintegracon', git: 'https://github.com/mrackwitz/CLIntegracon.git'
20
20
  gem 'diffy'
21
21
 
22
22
  # Code Review
data/Gemfile.lock CHANGED
@@ -1,13 +1,21 @@
1
+ GIT
2
+ remote: https://github.com/mrackwitz/CLIntegracon.git
3
+ revision: ca88b7b8920b6b6542f9b4ad2b1748855783dbae
4
+ specs:
5
+ clintegracon (0.9.0)
6
+ colored2 (~> 3.1)
7
+ diffy
8
+
1
9
  PATH
2
10
  remote: .
3
11
  specs:
4
- jazzy (0.14.3)
12
+ jazzy (0.15.0)
5
13
  cocoapods (~> 1.5)
6
14
  mustache (~> 1.1)
7
15
  open4 (~> 1.3)
8
16
  redcarpet (~> 3.4)
9
17
  rexml (~> 3.2)
10
- rouge (>= 2.0.6, < 4.0)
18
+ rouge (>= 2.0.6, < 5.0)
11
19
  sassc (~> 2.1)
12
20
  sqlite3 (~> 1.3)
13
21
  xcinvoke (~> 0.3.0)
@@ -15,15 +23,21 @@ PATH
15
23
  GEM
16
24
  remote: https://rubygems.org/
17
25
  specs:
18
- CFPropertyList (3.0.5)
26
+ CFPropertyList (3.0.7)
27
+ base64
28
+ nkf
19
29
  rexml
20
- activesupport (6.1.7)
30
+ activesupport (7.1.3.2)
31
+ base64
32
+ bigdecimal
21
33
  concurrent-ruby (~> 1.0, >= 1.0.2)
34
+ connection_pool (>= 2.2.5)
35
+ drb
22
36
  i18n (>= 1.6, < 2)
23
37
  minitest (>= 5.1)
38
+ mutex_m
24
39
  tzinfo (~> 2.0)
25
- zeitwerk (~> 2.3)
26
- addressable (2.8.1)
40
+ addressable (2.8.6)
27
41
  public_suffix (>= 2.0.2, < 6.0)
28
42
  algoliasearch (1.27.5)
29
43
  httpclient (~> 2.8, >= 2.8.3)
@@ -31,23 +45,22 @@ GEM
31
45
  ast (2.4.2)
32
46
  atomos (0.1.3)
33
47
  bacon (1.2.0)
48
+ base64 (0.2.0)
49
+ bigdecimal (3.1.7)
34
50
  claide (1.1.0)
35
51
  claide-plugins (0.9.2)
36
52
  cork
37
53
  nap
38
54
  open4 (~> 1.3)
39
- clintegracon (0.7.0)
40
- colored (~> 1.2)
41
- diffy
42
- cocoapods (1.11.3)
55
+ cocoapods (1.15.2)
43
56
  addressable (~> 2.8)
44
57
  claide (>= 1.0.2, < 2.0)
45
- cocoapods-core (= 1.11.3)
58
+ cocoapods-core (= 1.15.2)
46
59
  cocoapods-deintegrate (>= 1.0.3, < 2.0)
47
- cocoapods-downloader (>= 1.4.0, < 2.0)
60
+ cocoapods-downloader (>= 2.1, < 3.0)
48
61
  cocoapods-plugins (>= 1.0.0, < 2.0)
49
62
  cocoapods-search (>= 1.0.0, < 2.0)
50
- cocoapods-trunk (>= 1.4.0, < 2.0)
63
+ cocoapods-trunk (>= 1.6.0, < 2.0)
51
64
  cocoapods-try (>= 1.1.0, < 2.0)
52
65
  colored2 (~> 3.1)
53
66
  escape (~> 0.0.4)
@@ -55,10 +68,10 @@ GEM
55
68
  gh_inspector (~> 1.0)
56
69
  molinillo (~> 0.8.0)
57
70
  nap (~> 1.0)
58
- ruby-macho (>= 1.0, < 3.0)
59
- xcodeproj (>= 1.21.0, < 2.0)
60
- cocoapods-core (1.11.3)
61
- activesupport (>= 5.0, < 7)
71
+ ruby-macho (>= 2.3.0, < 3.0)
72
+ xcodeproj (>= 1.23.0, < 2.0)
73
+ cocoapods-core (1.15.2)
74
+ activesupport (>= 5.0, < 8)
62
75
  addressable (~> 2.8)
63
76
  algoliasearch (~> 1.0)
64
77
  concurrent-ruby (~> 1.1)
@@ -68,7 +81,7 @@ GEM
68
81
  public_suffix (~> 4.0)
69
82
  typhoeus (~> 1.0)
70
83
  cocoapods-deintegrate (1.0.5)
71
- cocoapods-downloader (1.6.3)
84
+ cocoapods-downloader (2.1)
72
85
  cocoapods-plugins (1.0.0)
73
86
  nap
74
87
  cocoapods-search (1.0.1)
@@ -76,144 +89,136 @@ GEM
76
89
  nap (>= 0.8, < 2.0)
77
90
  netrc (~> 0.11)
78
91
  cocoapods-try (1.2.0)
79
- colored (1.2)
80
92
  colored2 (3.1.2)
81
- concurrent-ruby (1.1.10)
93
+ concurrent-ruby (1.2.3)
94
+ connection_pool (2.4.1)
82
95
  cork (0.3.0)
83
96
  colored2 (~> 3.1)
84
- crack (0.4.5)
97
+ crack (1.0.0)
98
+ bigdecimal
85
99
  rexml
86
- danger (8.6.1)
100
+ danger (9.4.3)
87
101
  claide (~> 1.0)
88
102
  claide-plugins (>= 0.9.2)
89
103
  colored2 (~> 3.1)
90
104
  cork (~> 0.1)
91
- faraday (>= 0.9.0, < 2.0)
105
+ faraday (>= 0.9.0, < 3.0)
92
106
  faraday-http-cache (~> 2.0)
93
- git (~> 1.7)
107
+ git (~> 1.13)
94
108
  kramdown (~> 2.3)
95
109
  kramdown-parser-gfm (~> 1.0)
96
110
  no_proxy_fix
97
- octokit (~> 4.7)
111
+ octokit (>= 4.0)
98
112
  terminal-table (>= 1, < 4)
99
113
  diffy (3.4.2)
114
+ drb (2.2.1)
100
115
  escape (0.0.4)
101
- ethon (0.15.0)
116
+ ethon (0.16.0)
102
117
  ffi (>= 1.15.0)
103
- faraday (1.10.2)
104
- faraday-em_http (~> 1.0)
105
- faraday-em_synchrony (~> 1.0)
106
- faraday-excon (~> 1.1)
107
- faraday-httpclient (~> 1.0)
108
- faraday-multipart (~> 1.0)
109
- faraday-net_http (~> 1.0)
110
- faraday-net_http_persistent (~> 1.0)
111
- faraday-patron (~> 1.0)
112
- faraday-rack (~> 1.0)
113
- faraday-retry (~> 1.0)
114
- ruby2_keywords (>= 0.0.4)
115
- faraday-em_http (1.0.0)
116
- faraday-em_synchrony (1.0.0)
117
- faraday-excon (1.1.0)
118
- faraday-http-cache (2.4.1)
118
+ faraday (2.9.0)
119
+ faraday-net_http (>= 2.0, < 3.2)
120
+ faraday-http-cache (2.5.1)
119
121
  faraday (>= 0.8)
120
- faraday-httpclient (1.0.1)
121
- faraday-multipart (1.0.4)
122
- multipart-post (~> 2)
123
- faraday-net_http (1.0.1)
124
- faraday-net_http_persistent (1.2.0)
125
- faraday-patron (1.0.0)
126
- faraday-rack (1.0.0)
127
- faraday-retry (1.0.3)
128
- ffi (1.15.5)
122
+ faraday-net_http (3.1.0)
123
+ net-http
124
+ ffi (1.16.3)
129
125
  fourflusher (2.3.1)
130
126
  fuzzy_match (2.0.4)
131
127
  gh_inspector (1.1.3)
132
- git (1.12.0)
128
+ git (1.19.1)
133
129
  addressable (~> 2.8)
134
130
  rchardet (~> 1.8)
135
- hashdiff (1.0.1)
131
+ hashdiff (1.1.0)
136
132
  httpclient (2.8.3)
137
- i18n (1.12.0)
133
+ i18n (1.14.4)
138
134
  concurrent-ruby (~> 1.0)
139
- json (2.6.2)
135
+ json (2.7.2)
140
136
  kramdown (2.4.0)
141
137
  rexml
142
138
  kramdown-parser-gfm (1.1.0)
143
139
  kramdown (~> 2.0)
140
+ language_server-protocol (3.17.0.3)
144
141
  liferaft (0.0.6)
145
- mini_portile2 (2.8.0)
146
- minitest (5.16.3)
147
- mocha (1.14.0)
142
+ mini_portile2 (2.8.6)
143
+ minitest (5.22.3)
144
+ mocha (2.2.0)
145
+ ruby2_keywords (>= 0.0.5)
148
146
  mocha-on-bacon (0.2.3)
149
147
  mocha (>= 0.13.0)
150
148
  molinillo (0.8.0)
151
- multipart-post (2.2.3)
152
149
  mustache (1.1.1)
150
+ mutex_m (0.2.0)
153
151
  nanaimo (0.3.0)
154
152
  nap (1.1.0)
153
+ net-http (0.4.1)
154
+ uri
155
155
  netrc (0.11.0)
156
+ nkf (0.2.0)
156
157
  no_proxy_fix (0.1.2)
157
- octokit (4.25.1)
158
+ octokit (8.1.0)
159
+ base64
158
160
  faraday (>= 1, < 3)
159
161
  sawyer (~> 0.9)
160
162
  open4 (1.3.4)
161
- parallel (1.22.1)
162
- parser (3.1.2.1)
163
+ parallel (1.24.0)
164
+ parser (3.3.1.0)
163
165
  ast (~> 2.4.1)
166
+ racc
164
167
  prettybacon (0.0.2)
165
168
  bacon (~> 1.2)
166
169
  public_suffix (4.0.7)
170
+ racc (1.7.3)
167
171
  rainbow (3.1.1)
168
- rake (13.0.6)
172
+ rake (13.2.1)
169
173
  rchardet (1.8.0)
170
- redcarpet (3.5.1)
171
- regexp_parser (2.5.0)
172
- rexml (3.2.5)
173
- rouge (3.30.0)
174
- rubocop (1.36.0)
174
+ redcarpet (3.6.0)
175
+ regexp_parser (2.9.0)
176
+ rexml (3.2.6)
177
+ rouge (4.2.1)
178
+ rubocop (1.63.4)
175
179
  json (~> 2.3)
180
+ language_server-protocol (>= 3.17.0)
176
181
  parallel (~> 1.10)
177
- parser (>= 3.1.2.1)
182
+ parser (>= 3.3.0.2)
178
183
  rainbow (>= 2.2.2, < 4.0)
179
184
  regexp_parser (>= 1.8, < 3.0)
180
185
  rexml (>= 3.2.5, < 4.0)
181
- rubocop-ast (>= 1.20.1, < 2.0)
186
+ rubocop-ast (>= 1.31.1, < 2.0)
182
187
  ruby-progressbar (~> 1.7)
183
- unicode-display_width (>= 1.4.0, < 3.0)
184
- rubocop-ast (1.21.0)
185
- parser (>= 3.1.1.0)
188
+ unicode-display_width (>= 2.4.0, < 3.0)
189
+ rubocop-ast (1.31.3)
190
+ parser (>= 3.3.1.0)
186
191
  ruby-macho (2.5.1)
187
- ruby-progressbar (1.11.0)
192
+ ruby-progressbar (1.13.0)
188
193
  ruby2_keywords (0.0.5)
189
194
  sassc (2.4.0)
190
195
  ffi (~> 1.9)
191
196
  sawyer (0.9.2)
192
197
  addressable (>= 2.3.5)
193
198
  faraday (>= 0.17.3, < 3)
194
- sqlite3 (1.5.0)
199
+ sqlite3 (1.7.3)
195
200
  mini_portile2 (~> 2.8.0)
196
201
  terminal-table (3.0.2)
197
202
  unicode-display_width (>= 1.1.1, < 3)
198
- typhoeus (1.4.0)
203
+ typhoeus (1.4.1)
199
204
  ethon (>= 0.9.0)
200
- tzinfo (2.0.5)
205
+ tzinfo (2.0.6)
201
206
  concurrent-ruby (~> 1.0)
202
- unicode-display_width (2.2.0)
203
- webmock (3.18.1)
207
+ unicode-display_width (2.5.0)
208
+ uri (0.13.0)
209
+ webmock (3.23.0)
204
210
  addressable (>= 2.8.0)
205
211
  crack (>= 0.3.2)
206
212
  hashdiff (>= 0.4.0, < 2.0.0)
207
213
  xcinvoke (0.3.0)
208
214
  liferaft (~> 0.0.6)
209
- xcodeproj (1.22.0)
215
+ xcodeproj (1.24.0)
210
216
  CFPropertyList (>= 2.3.3, < 4.0)
211
217
  atomos (~> 0.1.3)
212
218
  claide (>= 1.0.2, < 2.0)
213
219
  colored2 (~> 3.1)
214
220
  nanaimo (~> 0.3.0)
215
221
  rexml (~> 3.2.4)
216
- zeitwerk (2.6.0)
217
222
 
218
223
  PLATFORMS
219
224
  ruby
@@ -221,7 +226,7 @@ PLATFORMS
221
226
  DEPENDENCIES
222
227
  bacon
223
228
  bundler (~> 2.1)
224
- clintegracon (= 0.7.0)
229
+ clintegracon!
225
230
  danger
226
231
  diffy
227
232
  jazzy!
@@ -233,4 +238,4 @@ DEPENDENCIES
233
238
  webmock
234
239
 
235
240
  BUNDLED WITH
236
- 2.2.22
241
+ 2.3.26