jazzy 0.3.2 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +27 -0
- data/.travis.yml +2 -2
- data/CHANGELOG.md +41 -0
- data/Gemfile.lock +10 -12
- data/README.md +80 -14
- data/Rakefile +1 -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/Commandant.framework/Versions/A/Commandant +0 -0
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Commandant.framework/Versions/A/Resources/Info.plist +5 -5
- 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/Result.framework/Versions/A/Resources/Info.plist +4 -4
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/Result.framework/Versions/A/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/SWXMLHash.framework/Versions/A/Resources/Info.plist +4 -4
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/SWXMLHash.framework/Versions/A/SWXMLHash +0 -0
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/SwiftXPC.framework/SwiftXPC +0 -0
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/SwiftXPC.framework/Versions/A/Resources/Info.plist +5 -5
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/SwiftXPC.framework/Versions/A/SwiftXPC +0 -0
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/libswiftCore.dylib +0 -0
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/libswiftCoreGraphics.dylib +0 -0
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/libswiftDarwin.dylib +0 -0
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/libswiftDispatch.dylib +0 -0
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/libswiftFoundation.dylib +0 -0
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Frameworks/libswiftObjectiveC.dylib +0 -0
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/Resources/Info.plist +5 -5
- data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/Versions/A/SourceKittenFramework +0 -0
- data/lib/jazzy/SourceKitten/bin/sourcekitten +0 -0
- data/lib/jazzy/assets/css/jazzy.css.scss +39 -14
- data/lib/jazzy/config.rb +342 -182
- data/lib/jazzy/doc.rb +8 -19
- data/lib/jazzy/doc_builder.rb +38 -26
- data/lib/jazzy/docset_builder.rb +4 -3
- data/lib/jazzy/executable.rb +2 -1
- data/lib/jazzy/gem_version.rb +1 -1
- data/lib/jazzy/jazzy_markdown.rb +16 -4
- data/lib/jazzy/podspec_documenter.rb +25 -11
- data/lib/jazzy/readme_generator.rb +7 -7
- data/lib/jazzy/source_declaration.rb +2 -0
- data/lib/jazzy/source_declaration/access_control_level.rb +21 -15
- data/lib/jazzy/source_declaration/type.rb +79 -5
- data/lib/jazzy/sourcekitten.rb +150 -24
- data/lib/jazzy/templates/doc.mustache +2 -2
- data/lib/jazzy/templates/nav.mustache +1 -1
- data/lib/jazzy/templates/task.mustache +26 -10
- data/spec/integration_spec.rb +34 -39
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4344d4e194eb9396ad55aa2a2050eed88aa2c30f
|
4
|
+
data.tar.gz: 4a6c9ee2d83e5870ac85bd9e49a19a31e0c7a544
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 99eaf5f9ea98dcddd743ab0714fbe8baef5bdc82021b8a175a9e483790b58bc5469131e1dadd12df05d4b36728b2f8ea1580088246a57e0709b44e5bc706d736
|
7
|
+
data.tar.gz: 654f71a20888a547d17a5aa6614d07de567bce7ff2f28addb84a403fd4822f58f1636fbd4573861c5c692589b1b1fa33995fa2ecd2963649999aa9a529def9ae
|
data/.rubocop.yml
CHANGED
@@ -3,6 +3,10 @@ AllCops:
|
|
3
3
|
- ./Rakefile
|
4
4
|
- ./Gemfile
|
5
5
|
- ./*.gemspec
|
6
|
+
Exclude:
|
7
|
+
- ./spec/integration_specs/**/*
|
8
|
+
- ./vendor/**/*
|
9
|
+
- ./tmp/**/*
|
6
10
|
|
7
11
|
# At the moment not ready to be used
|
8
12
|
# https://github.com/bbatsov/rubocop/issues/947
|
@@ -15,6 +19,12 @@ Documentation:
|
|
15
19
|
Metrics/MethodLength:
|
16
20
|
Max: 20
|
17
21
|
|
22
|
+
Metrics/AbcSize:
|
23
|
+
Enabled: false
|
24
|
+
|
25
|
+
Metrics/ModuleLength:
|
26
|
+
Enabled: false
|
27
|
+
|
18
28
|
# We adopted raise instead of fail.
|
19
29
|
SignalException:
|
20
30
|
EnforcedStyle: only_raise
|
@@ -47,6 +57,23 @@ TrailingComma:
|
|
47
57
|
Style/SpecialGlobalVars:
|
48
58
|
Enabled: false
|
49
59
|
|
60
|
+
# For lambdas nested within certain expressions, this rule forces either ugly
|
61
|
+
# parens or curly braces that violate the "do/end for multiline blocks" rule.
|
62
|
+
Lambda:
|
63
|
+
Enabled: false
|
64
|
+
|
65
|
+
# Disallowing indented "when" clauses destroys readability when using the
|
66
|
+
# single-line "when/then" style.
|
67
|
+
CaseIndentation:
|
68
|
+
Enabled: false
|
69
|
+
|
70
|
+
# These are both subjective judgements that depend on the situation, and are
|
71
|
+
# not appropriate as absolute rules.
|
72
|
+
GuardClause:
|
73
|
+
Enabled: false
|
74
|
+
Next:
|
75
|
+
Enabled: false
|
76
|
+
|
50
77
|
#- Jazzy specs -----------------------------------------------------------#
|
51
78
|
|
52
79
|
# Allow for `should.match /regexp/`.
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,44 @@
|
|
1
|
+
## 0.4.0
|
2
|
+
|
3
|
+
##### Breaking
|
4
|
+
|
5
|
+
* `--swift-version` now defaults to 2.1 instead of 2.0.
|
6
|
+
[JP Simard](https://github.com/jpsim)
|
7
|
+
|
8
|
+
##### Enhancements
|
9
|
+
|
10
|
+
* Support for documenting Objective-C projects! 🎉
|
11
|
+
Pass `--objc`, `--umbrella-header ...` and `-framework-root ...`.
|
12
|
+
[JP Simard](https://github.com/jpsim)
|
13
|
+
[#56](https://github.com/realm/jazzy/issues/56)
|
14
|
+
|
15
|
+
* Mentions of top-level declarations in documentation comments are now
|
16
|
+
automatically hyperlinked to their reference.
|
17
|
+
[JP Simard](https://github.com/jpsim)
|
18
|
+
|
19
|
+
* Jazzy can now read options from a configuration file. The command line
|
20
|
+
provides comprehensive help for available options via `jazzy -h config`.
|
21
|
+
[pcantrell](https://github.com/pcantrell)
|
22
|
+
[#310](https://github.com/realm/jazzy/pull/310)
|
23
|
+
|
24
|
+
* Render special list items (e.g. Throws, See, etc.). See
|
25
|
+
http://ericasadun.com/2015/06/14/swift-header-documentation-in-xcode-7/ for
|
26
|
+
a complete list.
|
27
|
+
[JP Simard](https://github.com/jpsim)
|
28
|
+
[#317](https://github.com/realm/jazzy/issues/317)
|
29
|
+
|
30
|
+
* Support for Swift 2.1.
|
31
|
+
[JP Simard](https://github.com/jpsim)
|
32
|
+
|
33
|
+
* Swift extensions are now merged with their extended type, rendering a note
|
34
|
+
to describe extension default implementations and extension methods.
|
35
|
+
[pcantrell](https://github.com/pcantrell)
|
36
|
+
|
37
|
+
##### Bug Fixes
|
38
|
+
|
39
|
+
* None.
|
40
|
+
|
41
|
+
|
1
42
|
## 0.3.2
|
2
43
|
|
3
44
|
##### Breaking
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
jazzy (0.
|
4
|
+
jazzy (0.4.0)
|
5
5
|
cocoapods (~> 0.38)
|
6
6
|
mustache (~> 0.99)
|
7
7
|
open4
|
@@ -21,9 +21,9 @@ GEM
|
|
21
21
|
thread_safe (~> 0.3, >= 0.3.4)
|
22
22
|
tzinfo (~> 1.1)
|
23
23
|
addressable (2.3.6)
|
24
|
-
ast (2.
|
25
|
-
astrolabe (1.3.
|
26
|
-
parser (
|
24
|
+
ast (2.1.0)
|
25
|
+
astrolabe (1.3.1)
|
26
|
+
parser (~> 2.2)
|
27
27
|
bacon (1.2.0)
|
28
28
|
claide (0.9.1)
|
29
29
|
clintegracon (0.5.3)
|
@@ -76,26 +76,24 @@ GEM
|
|
76
76
|
nap (0.8.0)
|
77
77
|
netrc (0.7.8)
|
78
78
|
open4 (1.3.4)
|
79
|
-
parser (2.2.0
|
79
|
+
parser (2.2.3.0)
|
80
80
|
ast (>= 1.1, < 3.0)
|
81
|
-
|
82
|
-
powerpack (0.0.9)
|
81
|
+
powerpack (0.1.1)
|
83
82
|
prettybacon (0.0.2)
|
84
83
|
bacon (~> 1.2)
|
85
84
|
rainbow (2.0.0)
|
86
85
|
rake (10.3.2)
|
87
86
|
redcarpet (3.3.3)
|
88
87
|
rouge (1.10.1)
|
89
|
-
rubocop (0.
|
88
|
+
rubocop (0.34.2)
|
90
89
|
astrolabe (~> 1.3)
|
91
|
-
parser (>= 2.2.
|
92
|
-
powerpack (~> 0.
|
90
|
+
parser (>= 2.2.2.5, < 3.0)
|
91
|
+
powerpack (~> 0.1)
|
93
92
|
rainbow (>= 1.99.1, < 3.0)
|
94
93
|
ruby-progressbar (~> 1.4)
|
95
|
-
ruby-progressbar (1.
|
94
|
+
ruby-progressbar (1.7.5)
|
96
95
|
safe_yaml (1.0.4)
|
97
96
|
sass (3.4.18)
|
98
|
-
slop (3.6.0)
|
99
97
|
sqlite3 (1.3.10)
|
100
98
|
thread_safe (0.3.5)
|
101
99
|
tzinfo (1.2.2)
|
data/README.md
CHANGED
@@ -7,8 +7,9 @@
|
|
7
7
|
jazzy is a command-line utility that generates documentation for your Swift or
|
8
8
|
Objective-C projects.
|
9
9
|
|
10
|
-
|
11
|
-
|
10
|
+
Both Swift & Objective-C projects are supported.
|
11
|
+
|
12
|
+
*Objective-C support was recently added, so please report any issues you find.*
|
12
13
|
|
13
14
|
Instead of parsing your source files, jazzy hooks into [Clang][clang] and
|
14
15
|
[SourceKit][sourcekit] to use the [AST][ast] representation of your code and
|
@@ -21,10 +22,8 @@ documentation, post WWDC 2014.
|
|
21
22
|
|
22
23
|
### Requirements
|
23
24
|
|
24
|
-
* A
|
25
|
-
you wish to document, installed
|
26
|
-
Support for Xcode 7 betas is in progress (see
|
27
|
-
[#261](https://github.com/realm/jazzy/pull/261)).
|
25
|
+
* A version of [Xcode][xcode] (6.x or 7.x) capable of building the Swift project
|
26
|
+
you wish to document, installed in a location indexed by Spotlight.
|
28
27
|
|
29
28
|
### Installing
|
30
29
|
|
@@ -35,22 +34,89 @@ To install jazzy, run `[sudo] gem install jazzy` from your command line.
|
|
35
34
|
Run `jazzy` from your command line. Run `jazzy -h` for a list of additional
|
36
35
|
options.
|
37
36
|
|
37
|
+
You can set options for your project’s documentation in a configuration file,
|
38
|
+
`.jazzy.yaml` by default. For a detailed explanation and an exhaustive list of
|
39
|
+
all available options, run `jazzy --help config`.
|
40
|
+
|
41
|
+
#### Swift
|
42
|
+
|
43
|
+
Swift documentation is generated by default.
|
44
|
+
|
45
|
+
As an example, this is how Realm Swift docs are generated:
|
46
|
+
|
47
|
+
```shell
|
48
|
+
jazzy \
|
49
|
+
--clean \
|
50
|
+
--author Realm \
|
51
|
+
--author_url https://realm.io \
|
52
|
+
--github_url https://github.com/realm/realm-cocoa \
|
53
|
+
--github-file-prefix https://github.com/realm/realm-cocoa/tree/v0.96.2 \
|
54
|
+
--module-version 0.96.2 \
|
55
|
+
--xcodebuild-arguments -scheme,RealmSwift \
|
56
|
+
--module RealmSwift \
|
57
|
+
--root-url https://realm.io/docs/swift/0.96.2/api/ \
|
58
|
+
--output docs/swift_output \
|
59
|
+
--template-directory docs/templates
|
60
|
+
```
|
61
|
+
|
62
|
+
#### Objective-C
|
63
|
+
|
64
|
+
To generate documentation for Objective-C headers, you should pass `--objc`,
|
65
|
+
`--umbrella-header ...` and `-framework-root ...` as parameters to jazzy.
|
66
|
+
|
67
|
+
As an example, this is how Realm Objective-C docs are generated:
|
68
|
+
|
69
|
+
```shell
|
70
|
+
jazzy \
|
71
|
+
--objc \
|
72
|
+
--clean \
|
73
|
+
--author Realm \
|
74
|
+
--author_url https://realm.io \
|
75
|
+
--github_url https://github.com/realm/realm-cocoa \
|
76
|
+
--github-file-prefix https://github.com/realm/realm-cocoa/tree/v0.96.2 \
|
77
|
+
--module-version 0.96.2 \
|
78
|
+
--umbrella-header Realm/Realm.h \
|
79
|
+
--framework-root . \
|
80
|
+
--module Realm \
|
81
|
+
--root-url https://realm.io/docs/objc/0.96.2/api/ \
|
82
|
+
--output docs/objc_output \
|
83
|
+
--template-directory docs/templates
|
84
|
+
```
|
85
|
+
|
86
|
+
or AFNetworking:
|
87
|
+
|
88
|
+
```shell
|
89
|
+
jazzy \
|
90
|
+
--objc \
|
91
|
+
--author AFNetworking \
|
92
|
+
--author_url http://afnetworking.com \
|
93
|
+
--github_url https://github.com/AFNetworking/AFNetworking \
|
94
|
+
--github-file-prefix https://github.com/AFNetworking/AFNetworking/tree/2.6.2 \
|
95
|
+
--module-version 2.6.2 \
|
96
|
+
--umbrella-header AFNetworking/AFNetworking.h \
|
97
|
+
--framework-root . \
|
98
|
+
--module AFNetworking
|
99
|
+
```
|
100
|
+
|
38
101
|
### Troubleshooting
|
39
102
|
|
40
|
-
#### Only extensions are listed in the documentation.
|
41
|
-
|
103
|
+
#### Swift: Only extensions are listed in the documentation.
|
104
|
+
|
105
|
+
By default, jazzy only documents public declarations. To generate documentation
|
106
|
+
for declarations with a lower accessibility level (internal or private), please
|
107
|
+
set the `--min-acl` flag to `internal` or `private`.
|
42
108
|
|
43
109
|
### Development
|
44
110
|
|
45
|
-
jazzy is composed of two parts: the parser ([
|
111
|
+
jazzy is composed of two parts: the parser ([SourceKitten][SourceKitten],
|
46
112
|
written in Swift) and the site generator (written in ruby).
|
47
113
|
|
48
114
|
To build and run jazzy from source, you'll first need [bundler][bundler]. Once
|
49
115
|
bundler is installed, run `bundle install` from the root of this repo. At this
|
50
116
|
point, run jazzy from source by running `bin/jazzy`.
|
51
117
|
|
52
|
-
Instructions to build
|
53
|
-
[
|
118
|
+
Instructions to build SourceKitten from source can be found at
|
119
|
+
[SourceKitten's GitHub repository][SourceKitten].
|
54
120
|
|
55
121
|
### Design Goals
|
56
122
|
|
@@ -60,8 +126,8 @@ jazzy's main design goals are:
|
|
60
126
|
- Support for standard Objective-C and Swift documentation comment syntax
|
61
127
|
- Leverage modern HTML templating ([Mustache][mustache])
|
62
128
|
- Leverage the power and accuracy of the [Clang AST][ast] and [SourceKit][sourcekit]
|
63
|
-
- Support for
|
64
|
-
- Support Swift
|
129
|
+
- Support for Dash docsets
|
130
|
+
- Support Swift & Objective-C (*mixed projects are a work in progress*)
|
65
131
|
|
66
132
|
### License
|
67
133
|
|
@@ -71,6 +137,6 @@ This project is under the MIT license.
|
|
71
137
|
[sourcekit]: http://www.jpsim.com/uncovering-sourcekit "Uncovering SourceKit"
|
72
138
|
[ast]: http://clang.llvm.org/docs/IntroductionToTheClangAST.html "Introduction To The Clang AST"
|
73
139
|
[xcode]: https://developer.apple.com/xcode "Xcode"
|
74
|
-
[
|
140
|
+
[SourceKitten]: https://github.com/jpsim/SourceKitten "SourceKitten"
|
75
141
|
[bundler]: http://rubygems.org/gems/bundler
|
76
142
|
[mustache]: http://mustache.github.io "Mustache"
|
data/Rakefile
CHANGED
@@ -71,9 +71,7 @@ begin
|
|
71
71
|
#-- RuboCop ----------------------------------------------------------------#
|
72
72
|
|
73
73
|
require 'rubocop/rake_task'
|
74
|
-
RuboCop::RakeTask.new(:rubocop)
|
75
|
-
task.patterns = %w(lib spec/*.rb Rakefile Gemfile jazzy.gemspec)
|
76
|
-
end
|
74
|
+
RuboCop::RakeTask.new(:rubocop)
|
77
75
|
|
78
76
|
#-- SourceKitten -----------------------------------------------------------#
|
79
77
|
|
data/lib/jazzy/SourceKitten/Frameworks/SourceKittenFramework.framework/SourceKittenFramework
CHANGED
Binary file
|
Binary file
|
Binary file
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<plist version="1.0">
|
4
4
|
<dict>
|
5
5
|
<key>BuildMachineOSBuild</key>
|
6
|
-
<string>
|
6
|
+
<string>15B42</string>
|
7
7
|
<key>CFBundleDevelopmentRegion</key>
|
8
8
|
<string>en</string>
|
9
9
|
<key>CFBundleExecutable</key>
|
@@ -17,7 +17,7 @@
|
|
17
17
|
<key>CFBundlePackageType</key>
|
18
18
|
<string>FMWK</string>
|
19
19
|
<key>CFBundleShortVersionString</key>
|
20
|
-
<string>1
|
20
|
+
<string>0.6.1</string>
|
21
21
|
<key>CFBundleSignature</key>
|
22
22
|
<string>????</string>
|
23
23
|
<key>CFBundleSupportedPlatforms</key>
|
@@ -29,7 +29,7 @@
|
|
29
29
|
<key>DTCompiler</key>
|
30
30
|
<string>com.apple.compilers.llvm.clang.1_0</string>
|
31
31
|
<key>DTPlatformBuild</key>
|
32
|
-
<string>
|
32
|
+
<string>7B91b</string>
|
33
33
|
<key>DTPlatformVersion</key>
|
34
34
|
<string>GM</string>
|
35
35
|
<key>DTSDKBuild</key>
|
@@ -37,9 +37,9 @@
|
|
37
37
|
<key>DTSDKName</key>
|
38
38
|
<string>macosx10.11</string>
|
39
39
|
<key>DTXcode</key>
|
40
|
-
<string>
|
40
|
+
<string>0710</string>
|
41
41
|
<key>DTXcodeBuild</key>
|
42
|
-
<string>
|
42
|
+
<string>7B91b</string>
|
43
43
|
<key>NSHumanReadableCopyright</key>
|
44
44
|
<string>Copyright © 2014 Carthage. All rights reserved.</string>
|
45
45
|
</dict>
|
Binary file
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<plist version="1.0">
|
4
4
|
<dict>
|
5
5
|
<key>BuildMachineOSBuild</key>
|
6
|
-
<string>
|
6
|
+
<string>15B42</string>
|
7
7
|
<key>CFBundleDevelopmentRegion</key>
|
8
8
|
<string>en</string>
|
9
9
|
<key>CFBundleExecutable</key>
|
@@ -29,7 +29,7 @@
|
|
29
29
|
<key>DTCompiler</key>
|
30
30
|
<string>com.apple.compilers.llvm.clang.1_0</string>
|
31
31
|
<key>DTPlatformBuild</key>
|
32
|
-
<string>
|
32
|
+
<string>7B91b</string>
|
33
33
|
<key>DTPlatformVersion</key>
|
34
34
|
<string>GM</string>
|
35
35
|
<key>DTSDKBuild</key>
|
@@ -37,9 +37,9 @@
|
|
37
37
|
<key>DTSDKName</key>
|
38
38
|
<string>macosx10.11</string>
|
39
39
|
<key>DTXcode</key>
|
40
|
-
<string>
|
40
|
+
<string>0710</string>
|
41
41
|
<key>DTXcodeBuild</key>
|
42
|
-
<string>
|
42
|
+
<string>7B91b</string>
|
43
43
|
<key>NSHumanReadableCopyright</key>
|
44
44
|
<string>Copyright © 2015 Rob Rix. All rights reserved.</string>
|
45
45
|
</dict>
|
Binary file
|
Binary file
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<plist version="1.0">
|
4
4
|
<dict>
|
5
5
|
<key>BuildMachineOSBuild</key>
|
6
|
-
<string>
|
6
|
+
<string>15B42</string>
|
7
7
|
<key>CFBundleDevelopmentRegion</key>
|
8
8
|
<string>en</string>
|
9
9
|
<key>CFBundleExecutable</key>
|
@@ -29,7 +29,7 @@
|
|
29
29
|
<key>DTCompiler</key>
|
30
30
|
<string>com.apple.compilers.llvm.clang.1_0</string>
|
31
31
|
<key>DTPlatformBuild</key>
|
32
|
-
<string>
|
32
|
+
<string>7B91b</string>
|
33
33
|
<key>DTPlatformVersion</key>
|
34
34
|
<string>GM</string>
|
35
35
|
<key>DTSDKBuild</key>
|
@@ -37,9 +37,9 @@
|
|
37
37
|
<key>DTSDKName</key>
|
38
38
|
<string>macosx10.11</string>
|
39
39
|
<key>DTXcode</key>
|
40
|
-
<string>
|
40
|
+
<string>0710</string>
|
41
41
|
<key>DTXcodeBuild</key>
|
42
|
-
<string>
|
42
|
+
<string>7B91b</string>
|
43
43
|
<key>UIDeviceFamily</key>
|
44
44
|
<array>
|
45
45
|
<integer>1</integer>
|
Binary file
|
Binary file
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<plist version="1.0">
|
4
4
|
<dict>
|
5
5
|
<key>BuildMachineOSBuild</key>
|
6
|
-
<string>
|
6
|
+
<string>15B42</string>
|
7
7
|
<key>CFBundleDevelopmentRegion</key>
|
8
8
|
<string>en</string>
|
9
9
|
<key>CFBundleExecutable</key>
|
@@ -17,7 +17,7 @@
|
|
17
17
|
<key>CFBundlePackageType</key>
|
18
18
|
<string>FMWK</string>
|
19
19
|
<key>CFBundleShortVersionString</key>
|
20
|
-
<string>1.
|
20
|
+
<string>1.1.0</string>
|
21
21
|
<key>CFBundleSignature</key>
|
22
22
|
<string>????</string>
|
23
23
|
<key>CFBundleSupportedPlatforms</key>
|
@@ -29,7 +29,7 @@
|
|
29
29
|
<key>DTCompiler</key>
|
30
30
|
<string>com.apple.compilers.llvm.clang.1_0</string>
|
31
31
|
<key>DTPlatformBuild</key>
|
32
|
-
<string>
|
32
|
+
<string>7B91b</string>
|
33
33
|
<key>DTPlatformVersion</key>
|
34
34
|
<string>GM</string>
|
35
35
|
<key>DTSDKBuild</key>
|
@@ -37,9 +37,9 @@
|
|
37
37
|
<key>DTSDKName</key>
|
38
38
|
<string>macosx10.11</string>
|
39
39
|
<key>DTXcode</key>
|
40
|
-
<string>
|
40
|
+
<string>0710</string>
|
41
41
|
<key>DTXcodeBuild</key>
|
42
|
-
<string>
|
42
|
+
<string>7B91b</string>
|
43
43
|
<key>NSHumanReadableCopyright</key>
|
44
44
|
<string>Copyright © 2014 JP Simard. All rights reserved.</string>
|
45
45
|
</dict>
|