-
Notifications
You must be signed in to change notification settings - Fork 7
/
.jazzy.yaml
93 lines (87 loc) · 2.3 KB
/
.jazzy.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
author: John Fairhurst
author_url: http://github.com/johnfairh
module: RubyGateway
module_version: 6.0.0
copyright: Distributed under the MIT license. Maintained by [John Fairhurst](mailto:[email protected]).
readme: README.md
github_url: https://github.com/johnfairh/RubyGateway
github_file_prefix: https://github.com/johnfairh/RubyGateway/tree/main
clean: true
products:
- docs
- docset
- unresolved-json
- undocumented-json
xcodebuild_arguments:
- "-project"
- "RubyGateway.xcodeproj"
- "-target"
- "RubyGateway"
sdk: macosx
theme: fw2020
documentation: SourceDocs/*md
topic_style: source-order-defs
deployment_url: https://johnfairh.github.io/RubyGateway/
custom_categories:
- name: Guides
children:
- User Guide
- TODO
- name: Main APIs
abstract: These types form the main API to RubyGateway.
children:
- RbGateway
- RbObject
- RbObjectAccess
- RbObjectCollection
- name: Swift Method APIs
abstract: These types are used to implement Ruby methods in Swift.
children:
- RbMethodArgsSpec
- RbMethodCallback
- RbBoundMethodCallback
- RbBoundMethodVoidCallback
- RbMethod
- RbMethodArgs
- name: Other APIs
abstract: These types are used less often than those in [`Main APIs`](Main%20APIs.html).
children:
- RbBlockCallback
- RbBlockRetention
- RbBreak
- RbProc
- RbSymbol
- RbThread
- RbType
- name: Error Handling
abstract: These types are used to deal with error conditions.
children:
- RbError
- RbException
- RbFailableAccess
- name: Swift Interop
abstract: These types and extensions are used to convert Swift datatypes to Ruby and vice versa.
children:
- RbObjectConvertible
- String
- Bool
- UInt
- UInt64
- UInt32
- UInt16
- UInt8
- Int
- Int64
- Int32
- Int16
- Int8
- Double
- Float
- Array
- ArraySlice
- Dictionary
- Set
- Range
- ClosedRange
- RbComplex
- RbRational