cocoapods-acknowledgements-addons 0.1.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.
Files changed (37) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +50 -0
  3. data/.gitmodules +3 -0
  4. data/CHANGELOG.md +10 -0
  5. data/Gemfile +10 -0
  6. data/Gemfile.lock +100 -0
  7. data/LICENSE +21 -0
  8. data/README.md +49 -0
  9. data/Rakefile +14 -0
  10. data/cocoapods_acknowledgements_addons.gemspec +26 -0
  11. data/example/.gitignore +36 -0
  12. data/example/Acknowledgements/Crypto/Crypto.podspec +8 -0
  13. data/example/Acknowledgements/Crypto/LICENSE +1 -0
  14. data/example/App.xcodeproj/project.pbxproj +402 -0
  15. data/example/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  16. data/example/App.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  17. data/example/App.xcworkspace/contents.xcworkspacedata +13 -0
  18. data/example/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  19. data/example/App/AppDelegate.swift +25 -0
  20. data/example/App/Assets.xcassets/AppIcon.appiconset/Contents.json +98 -0
  21. data/example/App/Assets.xcassets/Contents.json +6 -0
  22. data/example/App/Base.lproj/LaunchScreen.storyboard +25 -0
  23. data/example/App/Info.plist +41 -0
  24. data/example/Cartfile +3 -0
  25. data/example/Cartfile.resolved +3 -0
  26. data/example/Gemfile +5 -0
  27. data/example/Gemfile.lock +94 -0
  28. data/example/Makefile +8 -0
  29. data/example/Podfile +15 -0
  30. data/example/Podfile.lock +16 -0
  31. data/example/README.md +32 -0
  32. data/lib/cocoapods_acknowledgements/addons.rb +29 -0
  33. data/lib/cocoapods_acknowledgements/addons/plist_modifier.rb +36 -0
  34. data/lib/cocoapods_acknowledgements/addons/podspec_accumulator.rb +34 -0
  35. data/lib/cocoapods_plugin.rb +1 -0
  36. data/lib/version.rb +5 -0
  37. metadata +135 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 2a83914b47947b003b90ea878b5fe26cff9a077b
4
+ data.tar.gz: fa04ff4f18bf34348193d69d411a3ac816cab1f9
5
+ SHA512:
6
+ metadata.gz: 2f8d10c0459d0f7d2caf956f79a5c4bc64ebf55b9b23a23718975ad1183c629989e84ea27e1884159f8d3b07c03b9584a34baf3c2b189ca95f6ae90d8fe7b99d
7
+ data.tar.gz: f7fe0aa1fc7f3da7cb431a3e32db1eef23ec5a0fbde7fa746d2484064c930cd499e884e748b9d4db44e7f284df99b0b71f25a31d9537b4a10d09f8444534e0d1
data/.gitignore ADDED
@@ -0,0 +1,50 @@
1
+ *.gem
2
+ *.rbc
3
+ /.config
4
+ /coverage/
5
+ /InstalledFiles
6
+ /pkg/
7
+ /spec/reports/
8
+ /spec/examples.txt
9
+ /test/tmp/
10
+ /test/version_tmp/
11
+ /tmp/
12
+
13
+ # Used by dotenv library to load environment variables.
14
+ # .env
15
+
16
+ ## Specific to RubyMotion:
17
+ .dat*
18
+ .repl_history
19
+ build/
20
+ *.bridgesupport
21
+ build-iPhoneOS/
22
+ build-iPhoneSimulator/
23
+
24
+ ## Specific to RubyMotion (use of CocoaPods):
25
+ #
26
+ # We recommend against adding the Pods directory to your .gitignore. However
27
+ # you should judge for yourself, the pros and cons are mentioned at:
28
+ # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
29
+ #
30
+ # vendor/Pods/
31
+
32
+ ## Documentation cache and generated files:
33
+ /.yardoc/
34
+ /_yardoc/
35
+ /doc/
36
+ /rdoc/
37
+
38
+ ## Environment normalization:
39
+ /.bundle/
40
+ /vendor/bundle
41
+ /lib/bundler/man/
42
+
43
+ # for a library or gem, you might want to ignore these files since the code is
44
+ # intended to run in multiple environments; otherwise, check them in:
45
+ # Gemfile.lock
46
+ # .ruby-version
47
+ # .ruby-gemset
48
+
49
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
50
+ .rvmrc
data/.gitmodules ADDED
@@ -0,0 +1,3 @@
1
+ [submodule "example/Dependencies/Strongify"]
2
+ path = example/Dependencies/Strongify
3
+ url = https://github.com/krzysztofzablocki/Strongify
data/CHANGELOG.md ADDED
@@ -0,0 +1,10 @@
1
+ # Change Log
2
+
3
+ ## 0.1.0
4
+
5
+ * Initial release
6
+ * Add additional acknowledgements located in the specified directories to the plist generated by [cocoapods-acknowledgements](https://github.com/CocoaPods/cocoapods-acknowledgements):
7
+
8
+ ```rb
9
+ plugin "cocoapods-acknowledgements-addons", add: ["directory_to_search"], exclude: ["lib_name"]
10
+ ```
data/Gemfile ADDED
@@ -0,0 +1,10 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
4
+
5
+ group :development do
6
+ gem "cocoapods"
7
+ gem "cocoapods-acknowledgements"
8
+ gem "pry"
9
+ gem "yard"
10
+ end
data/Gemfile.lock ADDED
@@ -0,0 +1,100 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ cocoapods-acknowledgements-addons (0.1.0)
5
+ cocoapods (>= 0.36)
6
+ cocoapods-acknowledgements
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ CFPropertyList (3.0.0)
12
+ activesupport (4.2.11.1)
13
+ i18n (~> 0.7)
14
+ minitest (~> 5.1)
15
+ thread_safe (~> 0.3, >= 0.3.4)
16
+ tzinfo (~> 1.1)
17
+ atomos (0.1.3)
18
+ claide (1.0.2)
19
+ cocoapods (1.6.1)
20
+ activesupport (>= 4.0.2, < 5)
21
+ claide (>= 1.0.2, < 2.0)
22
+ cocoapods-core (= 1.6.1)
23
+ cocoapods-deintegrate (>= 1.0.2, < 2.0)
24
+ cocoapods-downloader (>= 1.2.2, < 2.0)
25
+ cocoapods-plugins (>= 1.0.0, < 2.0)
26
+ cocoapods-search (>= 1.0.0, < 2.0)
27
+ cocoapods-stats (>= 1.0.0, < 2.0)
28
+ cocoapods-trunk (>= 1.3.1, < 2.0)
29
+ cocoapods-try (>= 1.1.0, < 2.0)
30
+ colored2 (~> 3.1)
31
+ escape (~> 0.0.4)
32
+ fourflusher (>= 2.2.0, < 3.0)
33
+ gh_inspector (~> 1.0)
34
+ molinillo (~> 0.6.6)
35
+ nap (~> 1.0)
36
+ ruby-macho (~> 1.4)
37
+ xcodeproj (>= 1.8.1, < 2.0)
38
+ cocoapods-acknowledgements (1.1.3)
39
+ activesupport (>= 4.0.2, < 5)
40
+ redcarpet (~> 3.3)
41
+ cocoapods-core (1.6.1)
42
+ activesupport (>= 4.0.2, < 6)
43
+ fuzzy_match (~> 2.0.4)
44
+ nap (~> 1.0)
45
+ cocoapods-deintegrate (1.0.4)
46
+ cocoapods-downloader (1.2.2)
47
+ cocoapods-plugins (1.0.0)
48
+ nap
49
+ cocoapods-search (1.0.0)
50
+ cocoapods-stats (1.1.0)
51
+ cocoapods-trunk (1.3.1)
52
+ nap (>= 0.8, < 2.0)
53
+ netrc (~> 0.11)
54
+ cocoapods-try (1.1.0)
55
+ coderay (1.1.2)
56
+ colored2 (3.1.2)
57
+ concurrent-ruby (1.1.5)
58
+ escape (0.0.4)
59
+ fourflusher (2.2.0)
60
+ fuzzy_match (2.0.4)
61
+ gh_inspector (1.1.3)
62
+ i18n (0.9.5)
63
+ concurrent-ruby (~> 1.0)
64
+ method_source (0.9.2)
65
+ minitest (5.11.3)
66
+ molinillo (0.6.6)
67
+ nanaimo (0.2.6)
68
+ nap (1.1.0)
69
+ netrc (0.11.0)
70
+ pry (0.12.2)
71
+ coderay (~> 1.1.0)
72
+ method_source (~> 0.9.0)
73
+ rake (12.3.2)
74
+ redcarpet (3.4.0)
75
+ ruby-macho (1.4.0)
76
+ thread_safe (0.3.6)
77
+ tzinfo (1.2.5)
78
+ thread_safe (~> 0.1)
79
+ xcodeproj (1.9.0)
80
+ CFPropertyList (>= 2.3.3, < 4.0)
81
+ atomos (~> 0.1.3)
82
+ claide (>= 1.0.2, < 2.0)
83
+ colored2 (~> 3.1)
84
+ nanaimo (~> 0.2.6)
85
+ yard (0.9.19)
86
+
87
+ PLATFORMS
88
+ ruby
89
+
90
+ DEPENDENCIES
91
+ bundler
92
+ cocoapods
93
+ cocoapods-acknowledgements
94
+ cocoapods-acknowledgements-addons!
95
+ pry
96
+ rake
97
+ yard
98
+
99
+ BUNDLED WITH
100
+ 2.0.1
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2019 bcylin
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,49 @@
1
+ # CocoaPods Acknowledgements Add-ons
2
+
3
+ A CocoaPods plugin that adds additional acknowledgements to the plist generated by [cocoapods-acknowledgements](https://github.com/CocoaPods/cocoapods-acknowledgements).
4
+
5
+ ## Installation
6
+
7
+ Install via `gem install cocoapods-acknowledgements` or add it to the **Gemfile**:
8
+
9
+ ```rb
10
+ gem "cocoapods-acknowledgements-addons"
11
+ ```
12
+
13
+ ## Use case
14
+
15
+ If you have some dependencies installed via CocoaPods and some installed using different ways, such as [Carthage](https://github.com/Carthage/Carthage) or git submodules, you can aggregate the acknowledgements in one place.
16
+
17
+ Use the plugin in the **Podfile**:
18
+
19
+ ```rb
20
+ target :App do
21
+ pod "CPDAcknowledgements"
22
+ end
23
+
24
+ # Generates a plist of dependencies installed via CocoaPods
25
+ plugin "cocoapods-acknowledgements"
26
+
27
+ # Adds additional acknowledgements to the generated plist
28
+ plugin "cocoapods-acknowledgements-addons", add: ["Carthage/Checkouts"]
29
+ ```
30
+
31
+ The plugin searches `**/*.podspec` located in the specified directories and adds the acknowledgements to the plist generated by [cocoapods-acknowledgements](https://github.com/CocoaPods/cocoapods-acknowledgements), which can be found in the `Pods` directory:
32
+
33
+ ```
34
+ .
35
+ ├── App.xcodeproj
36
+ ├── App.xcworkspace
37
+ ├── Podfile
38
+ ├── Podfile.lock
39
+ └── Pods
40
+ └── Pods-{target_name}-metadata.plist
41
+ ```
42
+
43
+ > This plugin does not support the format used in `Settings.bundle` at the moment.
44
+
45
+ Check out the [example app](https://github.com/bcylin/cocoapods-acknowledgements-addons/tree/master/Example) for the configuration to use with [CPDAcknowledgements](https://github.com/CocoaPods/CPDAcknowledgements).
46
+
47
+ ## License
48
+
49
+ Released under the [MIT License](https://github.com/bcylin/cocoapods-acknowledgements-addons/blob/master/LICENSE).
data/Rakefile ADDED
@@ -0,0 +1,14 @@
1
+ desc "Launch the example app"
2
+ task :example do
3
+ Rake::Task["dev:install"].execute
4
+ sh "open example/App.xcworkspace"
5
+ end
6
+
7
+ namespace :dev do
8
+ desc "Test the plugin with the example app"
9
+ task :install do
10
+ Dir.chdir("example") { sh "make install" }
11
+ end
12
+ end
13
+
14
+ task :default => ["dev:install"]
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+
3
+ lib = File.expand_path("../lib", __FILE__)
4
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
+
6
+ require "version.rb"
7
+
8
+ Gem::Specification.new do |spec|
9
+ spec.name = "cocoapods-acknowledgements-addons"
10
+ spec.version = CocoaPodsAcknowledgements::AddOns::VERSION
11
+ spec.authors = "bcylin"
12
+ spec.summary = %q{A CocoaPods plugin that adds additional acknowledgements to the plist generated by cocoapods-acknowledgements.}
13
+ spec.homepage = "https://github.com/bcylin/cocoapods-acknowledgements-addons"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_dependency "cocoapods", ">= 0.36"
22
+ spec.add_dependency "cocoapods-acknowledgements"
23
+
24
+ spec.add_development_dependency "bundler"
25
+ spec.add_development_dependency "rake"
26
+ end
@@ -0,0 +1,36 @@
1
+ # Xcode
2
+ #
3
+ # https://github.com/github/gitignore
4
+
5
+ ## Build generated
6
+ build/
7
+ DerivedData
8
+
9
+ ## Various settings
10
+ *.pbxuser
11
+ !default.pbxuser
12
+ *.mode1v3
13
+ !default.mode1v3
14
+ *.mode2v3
15
+ !default.mode2v3
16
+ *.perspectivev3
17
+ !default.perspectivev3
18
+ xcuserdata
19
+
20
+ ## Other
21
+ *.xccheckout
22
+ *.moved-aside
23
+ *.xcuserstate
24
+ *.xcscmblueprint
25
+ test_output
26
+ docs
27
+
28
+ ## Obj-C/Swift specific
29
+ *.hmap
30
+ *.ipa
31
+
32
+ ## CocoaPods
33
+ Pods/
34
+
35
+ ## Carthage
36
+ Carthage/
@@ -0,0 +1,8 @@
1
+ Pod::Spec.new do |s|
2
+ s.name = "Crypto"
3
+ s.version = "0.6.0"
4
+ s.summary = "Simple CommonCrypto wrapper for Swift for macOS, iOS, watchOS, and tvOS with Carthage support."
5
+ s.homepage = "https://github.com/soffes/Crypto"
6
+ s.license = { :type => "MIT", :file => "LICENSE" }
7
+ s.author = "Sam Soffes"
8
+ end
@@ -0,0 +1 @@
1
+ example/Acknowledgements/Crypto/../../Carthage/Checkouts/Crypto/LICENSE
@@ -0,0 +1,402 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 50;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 1DCBABEF664A580CC51A20C7 /* Pods-App-metadata.plist in Resources */ = {isa = PBXBuildFile; fileRef = 86483D0B459CFC778983F352 /* Pods-App-metadata.plist */; };
11
+ B43EC93C93DC3C2360974509 /* Pods_App.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA157747EC044E59B9C2F90B /* Pods_App.framework */; };
12
+ B514E8CD2286FB6F002DAF01 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = B514E8CC2286FB6F002DAF01 /* AppDelegate.swift */; };
13
+ B514E8D42286FB73002DAF01 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = B514E8D32286FB73002DAF01 /* Assets.xcassets */; };
14
+ B514E8D72286FB73002DAF01 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = B514E8D52286FB73002DAF01 /* LaunchScreen.storyboard */; };
15
+ /* End PBXBuildFile section */
16
+
17
+ /* Begin PBXFileReference section */
18
+ 214E416B10370E7D6559A33E /* Pods-App.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-App.debug.xcconfig"; path = "Target Support Files/Pods-App/Pods-App.debug.xcconfig"; sourceTree = "<group>"; };
19
+ 86483D0B459CFC778983F352 /* Pods-App-metadata.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-App-metadata.plist"; sourceTree = "<group>"; };
20
+ B514E8C92286FB6E002DAF01 /* App.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = App.app; sourceTree = BUILT_PRODUCTS_DIR; };
21
+ B514E8CC2286FB6F002DAF01 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
22
+ B514E8D32286FB73002DAF01 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
23
+ B514E8D62286FB73002DAF01 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
24
+ B514E8D82286FB74002DAF01 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
25
+ BA157747EC044E59B9C2F90B /* Pods_App.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_App.framework; sourceTree = BUILT_PRODUCTS_DIR; };
26
+ CC4EEEFD98089300586144D8 /* Pods-App.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-App.release.xcconfig"; path = "Target Support Files/Pods-App/Pods-App.release.xcconfig"; sourceTree = "<group>"; };
27
+ /* End PBXFileReference section */
28
+
29
+ /* Begin PBXFrameworksBuildPhase section */
30
+ B514E8C62286FB6E002DAF01 /* Frameworks */ = {
31
+ isa = PBXFrameworksBuildPhase;
32
+ buildActionMask = 2147483647;
33
+ files = (
34
+ B43EC93C93DC3C2360974509 /* Pods_App.framework in Frameworks */,
35
+ );
36
+ runOnlyForDeploymentPostprocessing = 0;
37
+ };
38
+ /* End PBXFrameworksBuildPhase section */
39
+
40
+ /* Begin PBXGroup section */
41
+ 24D37DD367BF85989738F0D1 /* Frameworks */ = {
42
+ isa = PBXGroup;
43
+ children = (
44
+ BA157747EC044E59B9C2F90B /* Pods_App.framework */,
45
+ );
46
+ name = Frameworks;
47
+ sourceTree = "<group>";
48
+ };
49
+ 84983485F7D75172E02E6D59 /* Pods */ = {
50
+ isa = PBXGroup;
51
+ children = (
52
+ 86483D0B459CFC778983F352 /* Pods-App-metadata.plist */,
53
+ 214E416B10370E7D6559A33E /* Pods-App.debug.xcconfig */,
54
+ CC4EEEFD98089300586144D8 /* Pods-App.release.xcconfig */,
55
+ );
56
+ path = Pods;
57
+ sourceTree = "<group>";
58
+ };
59
+ B514E8C02286FB6E002DAF01 = {
60
+ isa = PBXGroup;
61
+ children = (
62
+ B514E8CB2286FB6E002DAF01 /* App */,
63
+ 24D37DD367BF85989738F0D1 /* Frameworks */,
64
+ 84983485F7D75172E02E6D59 /* Pods */,
65
+ B514E8CA2286FB6E002DAF01 /* Products */,
66
+ );
67
+ sourceTree = "<group>";
68
+ };
69
+ B514E8CA2286FB6E002DAF01 /* Products */ = {
70
+ isa = PBXGroup;
71
+ children = (
72
+ B514E8C92286FB6E002DAF01 /* App.app */,
73
+ );
74
+ name = Products;
75
+ sourceTree = "<group>";
76
+ };
77
+ B514E8CB2286FB6E002DAF01 /* App */ = {
78
+ isa = PBXGroup;
79
+ children = (
80
+ B514E8CC2286FB6F002DAF01 /* AppDelegate.swift */,
81
+ B514E8D32286FB73002DAF01 /* Assets.xcassets */,
82
+ B514E8D82286FB74002DAF01 /* Info.plist */,
83
+ B514E8D52286FB73002DAF01 /* LaunchScreen.storyboard */,
84
+ );
85
+ path = App;
86
+ sourceTree = "<group>";
87
+ };
88
+ /* End PBXGroup section */
89
+
90
+ /* Begin PBXNativeTarget section */
91
+ B514E8C82286FB6E002DAF01 /* App */ = {
92
+ isa = PBXNativeTarget;
93
+ buildConfigurationList = B514E8DB2286FB74002DAF01 /* Build configuration list for PBXNativeTarget "App" */;
94
+ buildPhases = (
95
+ F711F7ADC2B7D0AEA62DF029 /* [CP] Check Pods Manifest.lock */,
96
+ B514E8C52286FB6E002DAF01 /* Sources */,
97
+ B514E8C62286FB6E002DAF01 /* Frameworks */,
98
+ B514E8C72286FB6E002DAF01 /* Resources */,
99
+ C1EE9EAD67508784EAE1171E /* [CP] Embed Pods Frameworks */,
100
+ );
101
+ buildRules = (
102
+ );
103
+ dependencies = (
104
+ );
105
+ name = App;
106
+ productName = App;
107
+ productReference = B514E8C92286FB6E002DAF01 /* App.app */;
108
+ productType = "com.apple.product-type.application";
109
+ };
110
+ /* End PBXNativeTarget section */
111
+
112
+ /* Begin PBXProject section */
113
+ B514E8C12286FB6E002DAF01 /* Project object */ = {
114
+ isa = PBXProject;
115
+ attributes = {
116
+ LastSwiftUpdateCheck = 1010;
117
+ LastUpgradeCheck = 1010;
118
+ ORGANIZATIONNAME = bcylin;
119
+ TargetAttributes = {
120
+ B514E8C82286FB6E002DAF01 = {
121
+ CreatedOnToolsVersion = 10.1;
122
+ };
123
+ };
124
+ };
125
+ buildConfigurationList = B514E8C42286FB6E002DAF01 /* Build configuration list for PBXProject "App" */;
126
+ compatibilityVersion = "Xcode 9.3";
127
+ developmentRegion = en;
128
+ hasScannedForEncodings = 0;
129
+ knownRegions = (
130
+ en,
131
+ Base,
132
+ );
133
+ mainGroup = B514E8C02286FB6E002DAF01;
134
+ productRefGroup = B514E8CA2286FB6E002DAF01 /* Products */;
135
+ projectDirPath = "";
136
+ projectRoot = "";
137
+ targets = (
138
+ B514E8C82286FB6E002DAF01 /* App */,
139
+ );
140
+ };
141
+ /* End PBXProject section */
142
+
143
+ /* Begin PBXResourcesBuildPhase section */
144
+ B514E8C72286FB6E002DAF01 /* Resources */ = {
145
+ isa = PBXResourcesBuildPhase;
146
+ buildActionMask = 2147483647;
147
+ files = (
148
+ B514E8D42286FB73002DAF01 /* Assets.xcassets in Resources */,
149
+ B514E8D72286FB73002DAF01 /* LaunchScreen.storyboard in Resources */,
150
+ 1DCBABEF664A580CC51A20C7 /* Pods-App-metadata.plist in Resources */,
151
+ );
152
+ runOnlyForDeploymentPostprocessing = 0;
153
+ };
154
+ /* End PBXResourcesBuildPhase section */
155
+
156
+ /* Begin PBXShellScriptBuildPhase section */
157
+ C1EE9EAD67508784EAE1171E /* [CP] Embed Pods Frameworks */ = {
158
+ isa = PBXShellScriptBuildPhase;
159
+ buildActionMask = 2147483647;
160
+ files = (
161
+ );
162
+ inputFileListPaths = (
163
+ );
164
+ inputPaths = (
165
+ "${PODS_ROOT}/Target Support Files/Pods-App/Pods-App-frameworks.sh",
166
+ "${BUILT_PRODUCTS_DIR}/CPDAcknowledgements/CPDAcknowledgements.framework",
167
+ );
168
+ name = "[CP] Embed Pods Frameworks";
169
+ outputFileListPaths = (
170
+ );
171
+ outputPaths = (
172
+ "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CPDAcknowledgements.framework",
173
+ );
174
+ runOnlyForDeploymentPostprocessing = 0;
175
+ shellPath = /bin/sh;
176
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-App/Pods-App-frameworks.sh\"\n";
177
+ showEnvVarsInLog = 0;
178
+ };
179
+ F711F7ADC2B7D0AEA62DF029 /* [CP] Check Pods Manifest.lock */ = {
180
+ isa = PBXShellScriptBuildPhase;
181
+ buildActionMask = 2147483647;
182
+ files = (
183
+ );
184
+ inputFileListPaths = (
185
+ );
186
+ inputPaths = (
187
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
188
+ "${PODS_ROOT}/Manifest.lock",
189
+ );
190
+ name = "[CP] Check Pods Manifest.lock";
191
+ outputFileListPaths = (
192
+ );
193
+ outputPaths = (
194
+ "$(DERIVED_FILE_DIR)/Pods-App-checkManifestLockResult.txt",
195
+ );
196
+ runOnlyForDeploymentPostprocessing = 0;
197
+ shellPath = /bin/sh;
198
+ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
199
+ showEnvVarsInLog = 0;
200
+ };
201
+ /* End PBXShellScriptBuildPhase section */
202
+
203
+ /* Begin PBXSourcesBuildPhase section */
204
+ B514E8C52286FB6E002DAF01 /* Sources */ = {
205
+ isa = PBXSourcesBuildPhase;
206
+ buildActionMask = 2147483647;
207
+ files = (
208
+ B514E8CD2286FB6F002DAF01 /* AppDelegate.swift in Sources */,
209
+ );
210
+ runOnlyForDeploymentPostprocessing = 0;
211
+ };
212
+ /* End PBXSourcesBuildPhase section */
213
+
214
+ /* Begin PBXVariantGroup section */
215
+ B514E8D52286FB73002DAF01 /* LaunchScreen.storyboard */ = {
216
+ isa = PBXVariantGroup;
217
+ children = (
218
+ B514E8D62286FB73002DAF01 /* Base */,
219
+ );
220
+ name = LaunchScreen.storyboard;
221
+ sourceTree = "<group>";
222
+ };
223
+ /* End PBXVariantGroup section */
224
+
225
+ /* Begin XCBuildConfiguration section */
226
+ B514E8D92286FB74002DAF01 /* Debug */ = {
227
+ isa = XCBuildConfiguration;
228
+ buildSettings = {
229
+ ALWAYS_SEARCH_USER_PATHS = NO;
230
+ CLANG_ANALYZER_NONNULL = YES;
231
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
232
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
233
+ CLANG_CXX_LIBRARY = "libc++";
234
+ CLANG_ENABLE_MODULES = YES;
235
+ CLANG_ENABLE_OBJC_ARC = YES;
236
+ CLANG_ENABLE_OBJC_WEAK = YES;
237
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
238
+ CLANG_WARN_BOOL_CONVERSION = YES;
239
+ CLANG_WARN_COMMA = YES;
240
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
241
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
242
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
243
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
244
+ CLANG_WARN_EMPTY_BODY = YES;
245
+ CLANG_WARN_ENUM_CONVERSION = YES;
246
+ CLANG_WARN_INFINITE_RECURSION = YES;
247
+ CLANG_WARN_INT_CONVERSION = YES;
248
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
249
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
250
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
251
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
252
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
253
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
254
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
255
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
256
+ CLANG_WARN_UNREACHABLE_CODE = YES;
257
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
258
+ CODE_SIGN_IDENTITY = "iPhone Developer";
259
+ COPY_PHASE_STRIP = NO;
260
+ DEBUG_INFORMATION_FORMAT = dwarf;
261
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
262
+ ENABLE_TESTABILITY = YES;
263
+ GCC_C_LANGUAGE_STANDARD = gnu11;
264
+ GCC_DYNAMIC_NO_PIC = NO;
265
+ GCC_NO_COMMON_BLOCKS = YES;
266
+ GCC_OPTIMIZATION_LEVEL = 0;
267
+ GCC_PREPROCESSOR_DEFINITIONS = (
268
+ "DEBUG=1",
269
+ "$(inherited)",
270
+ );
271
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
272
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
273
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
274
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
275
+ GCC_WARN_UNUSED_FUNCTION = YES;
276
+ GCC_WARN_UNUSED_VARIABLE = YES;
277
+ IPHONEOS_DEPLOYMENT_TARGET = 12.1;
278
+ MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
279
+ MTL_FAST_MATH = YES;
280
+ ONLY_ACTIVE_ARCH = YES;
281
+ SDKROOT = iphoneos;
282
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
283
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
284
+ };
285
+ name = Debug;
286
+ };
287
+ B514E8DA2286FB74002DAF01 /* Release */ = {
288
+ isa = XCBuildConfiguration;
289
+ buildSettings = {
290
+ ALWAYS_SEARCH_USER_PATHS = NO;
291
+ CLANG_ANALYZER_NONNULL = YES;
292
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
293
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
294
+ CLANG_CXX_LIBRARY = "libc++";
295
+ CLANG_ENABLE_MODULES = YES;
296
+ CLANG_ENABLE_OBJC_ARC = YES;
297
+ CLANG_ENABLE_OBJC_WEAK = YES;
298
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
299
+ CLANG_WARN_BOOL_CONVERSION = YES;
300
+ CLANG_WARN_COMMA = YES;
301
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
302
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
303
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
304
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
305
+ CLANG_WARN_EMPTY_BODY = YES;
306
+ CLANG_WARN_ENUM_CONVERSION = YES;
307
+ CLANG_WARN_INFINITE_RECURSION = YES;
308
+ CLANG_WARN_INT_CONVERSION = YES;
309
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
310
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
311
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
312
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
313
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
314
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
315
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
316
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
317
+ CLANG_WARN_UNREACHABLE_CODE = YES;
318
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
319
+ CODE_SIGN_IDENTITY = "iPhone Developer";
320
+ COPY_PHASE_STRIP = NO;
321
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
322
+ ENABLE_NS_ASSERTIONS = NO;
323
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
324
+ GCC_C_LANGUAGE_STANDARD = gnu11;
325
+ GCC_NO_COMMON_BLOCKS = YES;
326
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
327
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
328
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
329
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
330
+ GCC_WARN_UNUSED_FUNCTION = YES;
331
+ GCC_WARN_UNUSED_VARIABLE = YES;
332
+ IPHONEOS_DEPLOYMENT_TARGET = 12.1;
333
+ MTL_ENABLE_DEBUG_INFO = NO;
334
+ MTL_FAST_MATH = YES;
335
+ SDKROOT = iphoneos;
336
+ SWIFT_COMPILATION_MODE = wholemodule;
337
+ SWIFT_OPTIMIZATION_LEVEL = "-O";
338
+ VALIDATE_PRODUCT = YES;
339
+ };
340
+ name = Release;
341
+ };
342
+ B514E8DC2286FB74002DAF01 /* Debug */ = {
343
+ isa = XCBuildConfiguration;
344
+ baseConfigurationReference = 214E416B10370E7D6559A33E /* Pods-App.debug.xcconfig */;
345
+ buildSettings = {
346
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
347
+ CODE_SIGN_STYLE = Automatic;
348
+ INFOPLIST_FILE = App/Info.plist;
349
+ LD_RUNPATH_SEARCH_PATHS = (
350
+ "$(inherited)",
351
+ "@executable_path/Frameworks",
352
+ );
353
+ PRODUCT_BUNDLE_IDENTIFIER = io.github.bcylin.app;
354
+ PRODUCT_NAME = "$(TARGET_NAME)";
355
+ SWIFT_VERSION = 4.2;
356
+ TARGETED_DEVICE_FAMILY = "1,2";
357
+ };
358
+ name = Debug;
359
+ };
360
+ B514E8DD2286FB74002DAF01 /* Release */ = {
361
+ isa = XCBuildConfiguration;
362
+ baseConfigurationReference = CC4EEEFD98089300586144D8 /* Pods-App.release.xcconfig */;
363
+ buildSettings = {
364
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
365
+ CODE_SIGN_STYLE = Automatic;
366
+ INFOPLIST_FILE = App/Info.plist;
367
+ LD_RUNPATH_SEARCH_PATHS = (
368
+ "$(inherited)",
369
+ "@executable_path/Frameworks",
370
+ );
371
+ PRODUCT_BUNDLE_IDENTIFIER = io.github.bcylin.app;
372
+ PRODUCT_NAME = "$(TARGET_NAME)";
373
+ SWIFT_VERSION = 4.2;
374
+ TARGETED_DEVICE_FAMILY = "1,2";
375
+ };
376
+ name = Release;
377
+ };
378
+ /* End XCBuildConfiguration section */
379
+
380
+ /* Begin XCConfigurationList section */
381
+ B514E8C42286FB6E002DAF01 /* Build configuration list for PBXProject "App" */ = {
382
+ isa = XCConfigurationList;
383
+ buildConfigurations = (
384
+ B514E8D92286FB74002DAF01 /* Debug */,
385
+ B514E8DA2286FB74002DAF01 /* Release */,
386
+ );
387
+ defaultConfigurationIsVisible = 0;
388
+ defaultConfigurationName = Release;
389
+ };
390
+ B514E8DB2286FB74002DAF01 /* Build configuration list for PBXNativeTarget "App" */ = {
391
+ isa = XCConfigurationList;
392
+ buildConfigurations = (
393
+ B514E8DC2286FB74002DAF01 /* Debug */,
394
+ B514E8DD2286FB74002DAF01 /* Release */,
395
+ );
396
+ defaultConfigurationIsVisible = 0;
397
+ defaultConfigurationName = Release;
398
+ };
399
+ /* End XCConfigurationList section */
400
+ };
401
+ rootObject = B514E8C12286FB6E002DAF01 /* Project object */;
402
+ }