cocoapods-acknowledgements-addons 0.2.0 → 0.3.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 +5 -5
- data/.github/workflows/run_tests.yml +25 -0
- data/.travis.yml +3 -3
- data/CHANGELOG.md +13 -0
- data/Gemfile +0 -2
- data/Gemfile.lock +28 -23
- data/README.md +20 -2
- data/Rakefile +68 -10
- data/example/App.xcodeproj/project.pbxproj +48 -8
- data/example/App.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +43 -0
- data/example/App.xcworkspace/xcshareddata/swiftpm/Package.resolved +43 -0
- data/example/App/Info.plist +1 -1
- data/example/App/MethodSwizzler.m +1 -1
- data/example/App/Settings.bundle/Pods-App-settings-metadata.plist +235 -4
- data/example/AppTests/AppTests.swift +12 -2
- data/example/AppTests/Info.plist +1 -1
- data/example/Gemfile +0 -1
- data/example/Gemfile.lock +26 -25
- data/example/Makefile +3 -3
- data/example/Podfile +9 -4
- data/example/Podfile.lock +3 -3
- data/example/README.md +1 -1
- data/lib/cocoapods_acknowledgements/addons.rb +18 -7
- data/lib/cocoapods_acknowledgements/addons/acknowledgement.rb +4 -3
- data/lib/cocoapods_acknowledgements/addons/{plist_modifier.rb → modifiers/metadata_plist_modifier.rb} +26 -6
- data/lib/cocoapods_acknowledgements/addons/modifiers/pods_plist_modifier.rb +133 -0
- data/lib/cocoapods_acknowledgements/addons/swift_package_accumulator.rb +28 -0
- data/lib/version.rb +1 -1
- metadata +9 -6
- data/lib/cocoapods_acknowledgements/addons/settings_plist_modifier.rb +0 -58
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 91c9b90c3ff5b995bb229989cebfe81edcfc09595835cf11938521bba3a86952
|
4
|
+
data.tar.gz: e3a657540c482ee29ddb7fe70573bca90c500423b582b8ba6ce52e9bd2d0fa71
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 156eaadf49d60d3670c8aa09de92fbfa06d239dff3cd0315f1188251fa7d1597dfa425c41cf25b8198d276d523e04e8f1c26c242e27343ca3651c1d9b577763d
|
7
|
+
data.tar.gz: 937d5220d40d656f1827c8364038f94963f97a3171ed24df1c583a4b8c540e7f01aa9b4fceb767f982923454342003af5f20d60306c6987c4c9759356371fe36
|
@@ -0,0 +1,25 @@
|
|
1
|
+
name: Run tests
|
2
|
+
|
3
|
+
on: [push, pull_request]
|
4
|
+
|
5
|
+
jobs:
|
6
|
+
test:
|
7
|
+
name: rake install and test
|
8
|
+
runs-on: macOS-latest
|
9
|
+
steps:
|
10
|
+
- uses: actions/checkout@master
|
11
|
+
- uses: actions/setup-ruby@v1
|
12
|
+
with:
|
13
|
+
ruby-version: '2.6.x'
|
14
|
+
- name: Run bundle install
|
15
|
+
run: |
|
16
|
+
gem list bundler
|
17
|
+
bundle install
|
18
|
+
|
19
|
+
- name: Build app
|
20
|
+
run: |
|
21
|
+
bundle exec rake build
|
22
|
+
|
23
|
+
- name: Run tests
|
24
|
+
run: |
|
25
|
+
bundle exec rake test
|
data/.travis.yml
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
language: objective-c
|
2
|
-
osx_image:
|
2
|
+
osx_image: xcode11.3
|
3
3
|
cache:
|
4
4
|
- bundler
|
5
5
|
- cocoapods
|
6
6
|
before_install:
|
7
7
|
- export LANG=en_US.UTF-8
|
8
|
-
- gem install bundler
|
8
|
+
- gem install bundler -v 2.0.2
|
9
9
|
script:
|
10
|
-
- bundle exec rake
|
10
|
+
- bundle exec rake build
|
11
11
|
- bundle exec rake test
|
12
12
|
notifications:
|
13
13
|
email: false
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## 0.3.0
|
4
|
+
|
5
|
+
* Update the markdown and plist files in `Pods/Target Support Files`.
|
6
|
+
* Support wildcard characters in the excluded filenames.
|
7
|
+
* Find dependencies installed via Swift Package Manager:
|
8
|
+
|
9
|
+
```rb
|
10
|
+
plugin "cocoapods-acknowledgements-addons",
|
11
|
+
add: ["directory_to_search"],
|
12
|
+
with_spm: true,
|
13
|
+
exclude: ["lib_name*"]
|
14
|
+
```
|
15
|
+
|
3
16
|
## 0.2.0
|
4
17
|
|
5
18
|
* Support the plist located in `Settings.bundle`.
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,68 +1,75 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
cocoapods-acknowledgements-addons (0.
|
4
|
+
cocoapods-acknowledgements-addons (0.3.0)
|
5
5
|
cocoapods (>= 0.36)
|
6
6
|
cocoapods-acknowledgements
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: https://rubygems.org/
|
10
10
|
specs:
|
11
|
-
CFPropertyList (3.0.
|
11
|
+
CFPropertyList (3.0.2)
|
12
12
|
activesupport (4.2.11.1)
|
13
13
|
i18n (~> 0.7)
|
14
14
|
minitest (~> 5.1)
|
15
15
|
thread_safe (~> 0.3, >= 0.3.4)
|
16
16
|
tzinfo (~> 1.1)
|
17
|
+
algoliasearch (1.27.1)
|
18
|
+
httpclient (~> 2.8, >= 2.8.3)
|
19
|
+
json (>= 1.5.1)
|
17
20
|
atomos (0.1.3)
|
18
|
-
claide (1.0.
|
19
|
-
cocoapods (1.
|
21
|
+
claide (1.0.3)
|
22
|
+
cocoapods (1.8.4)
|
20
23
|
activesupport (>= 4.0.2, < 5)
|
21
24
|
claide (>= 1.0.2, < 2.0)
|
22
|
-
cocoapods-core (= 1.
|
23
|
-
cocoapods-deintegrate (>= 1.0.
|
25
|
+
cocoapods-core (= 1.8.4)
|
26
|
+
cocoapods-deintegrate (>= 1.0.3, < 2.0)
|
24
27
|
cocoapods-downloader (>= 1.2.2, < 2.0)
|
25
28
|
cocoapods-plugins (>= 1.0.0, < 2.0)
|
26
29
|
cocoapods-search (>= 1.0.0, < 2.0)
|
27
30
|
cocoapods-stats (>= 1.0.0, < 2.0)
|
28
|
-
cocoapods-trunk (>= 1.
|
31
|
+
cocoapods-trunk (>= 1.4.0, < 2.0)
|
29
32
|
cocoapods-try (>= 1.1.0, < 2.0)
|
30
33
|
colored2 (~> 3.1)
|
31
34
|
escape (~> 0.0.4)
|
32
|
-
fourflusher (>= 2.
|
35
|
+
fourflusher (>= 2.3.0, < 3.0)
|
33
36
|
gh_inspector (~> 1.0)
|
34
37
|
molinillo (~> 0.6.6)
|
35
38
|
nap (~> 1.0)
|
36
39
|
ruby-macho (~> 1.4)
|
37
|
-
xcodeproj (>= 1.
|
40
|
+
xcodeproj (>= 1.11.1, < 2.0)
|
38
41
|
cocoapods-acknowledgements (1.1.3)
|
39
42
|
activesupport (>= 4.0.2, < 5)
|
40
43
|
redcarpet (~> 3.3)
|
41
|
-
cocoapods-core (1.
|
44
|
+
cocoapods-core (1.8.4)
|
42
45
|
activesupport (>= 4.0.2, < 6)
|
46
|
+
algoliasearch (~> 1.0)
|
47
|
+
concurrent-ruby (~> 1.1)
|
43
48
|
fuzzy_match (~> 2.0.4)
|
44
49
|
nap (~> 1.0)
|
45
50
|
cocoapods-deintegrate (1.0.4)
|
46
|
-
cocoapods-downloader (1.
|
51
|
+
cocoapods-downloader (1.3.0)
|
47
52
|
cocoapods-plugins (1.0.0)
|
48
53
|
nap
|
49
54
|
cocoapods-search (1.0.0)
|
50
55
|
cocoapods-stats (1.1.0)
|
51
|
-
cocoapods-trunk (1.
|
56
|
+
cocoapods-trunk (1.4.1)
|
52
57
|
nap (>= 0.8, < 2.0)
|
53
58
|
netrc (~> 0.11)
|
54
59
|
cocoapods-try (1.1.0)
|
55
60
|
coderay (1.1.2)
|
56
61
|
colored2 (3.1.2)
|
57
|
-
concurrent-ruby (1.1.
|
62
|
+
concurrent-ruby (1.1.6)
|
58
63
|
escape (0.0.4)
|
59
|
-
fourflusher (2.
|
64
|
+
fourflusher (2.3.1)
|
60
65
|
fuzzy_match (2.0.4)
|
61
66
|
gh_inspector (1.1.3)
|
67
|
+
httpclient (2.8.3)
|
62
68
|
i18n (0.9.5)
|
63
69
|
concurrent-ruby (~> 1.0)
|
70
|
+
json (2.3.0)
|
64
71
|
method_source (0.9.2)
|
65
|
-
minitest (5.
|
72
|
+
minitest (5.14.0)
|
66
73
|
molinillo (0.6.6)
|
67
74
|
nanaimo (0.2.6)
|
68
75
|
nap (1.1.0)
|
@@ -70,14 +77,14 @@ GEM
|
|
70
77
|
pry (0.12.2)
|
71
78
|
coderay (~> 1.1.0)
|
72
79
|
method_source (~> 0.9.0)
|
73
|
-
rake (
|
74
|
-
redcarpet (3.
|
80
|
+
rake (13.0.1)
|
81
|
+
redcarpet (3.5.0)
|
75
82
|
rouge (2.0.7)
|
76
83
|
ruby-macho (1.4.0)
|
77
84
|
thread_safe (0.3.6)
|
78
|
-
tzinfo (1.2.
|
85
|
+
tzinfo (1.2.6)
|
79
86
|
thread_safe (~> 0.1)
|
80
|
-
xcodeproj (1.
|
87
|
+
xcodeproj (1.15.0)
|
81
88
|
CFPropertyList (>= 2.3.3, < 4.0)
|
82
89
|
atomos (~> 0.1.3)
|
83
90
|
claide (>= 1.0.2, < 2.0)
|
@@ -85,15 +92,13 @@ GEM
|
|
85
92
|
nanaimo (~> 0.2.6)
|
86
93
|
xcpretty (0.3.0)
|
87
94
|
rouge (~> 2.0.7)
|
88
|
-
yard (0.9.
|
95
|
+
yard (0.9.24)
|
89
96
|
|
90
97
|
PLATFORMS
|
91
98
|
ruby
|
92
99
|
|
93
100
|
DEPENDENCIES
|
94
101
|
bundler
|
95
|
-
cocoapods
|
96
|
-
cocoapods-acknowledgements
|
97
102
|
cocoapods-acknowledgements-addons!
|
98
103
|
pry
|
99
104
|
rake
|
@@ -101,4 +106,4 @@ DEPENDENCIES
|
|
101
106
|
yard
|
102
107
|
|
103
108
|
BUNDLED WITH
|
104
|
-
|
109
|
+
1.17.2
|
data/README.md
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
# CocoaPods Acknowledgements Add-ons
|
2
2
|
|
3
|
+
[](https://github.com/bcylin/cocoapods-acknowledgements-addons/actions)
|
3
4
|
[](https://travis-ci.org/bcylin/cocoapods-acknowledgements-addons)
|
4
|
-
[](https://
|
5
|
+
[](https://rubygems.org/gems/cocoapods-acknowledgements-addons)
|
5
6
|
|
6
7
|
A CocoaPods plugin that adds additional acknowledgements to the plist generated by [cocoapods-acknowledgements](https://github.com/CocoaPods/cocoapods-acknowledgements).
|
7
8
|
|
@@ -13,7 +14,14 @@ Install via `gem install cocoapods-acknowledgements` or add it to the **Gemfile*
|
|
13
14
|
gem "cocoapods-acknowledgements-addons"
|
14
15
|
```
|
15
16
|
|
16
|
-
##
|
17
|
+
## Prerequisites
|
18
|
+
|
19
|
+
1. CocoaPods and [cocoapods-acknowledgements](https://github.com/CocoaPods/cocoapods-acknowledgements)
|
20
|
+
2. The installed libraries provide podspec
|
21
|
+
|
22
|
+
## Use cases
|
23
|
+
|
24
|
+
### With Carthage / git submodules
|
17
25
|
|
18
26
|
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.
|
19
27
|
|
@@ -31,6 +39,16 @@ plugin "cocoapods-acknowledgements"
|
|
31
39
|
plugin "cocoapods-acknowledgements-addons", add: ["Carthage/Checkouts"]
|
32
40
|
```
|
33
41
|
|
42
|
+
### With Swift Package Manager
|
43
|
+
|
44
|
+
To find the dependencies installed via [Swift Package Manager](https://developer.apple.com/documentation/xcode/adding_package_dependencies_to_your_app) in `~/Library/Developer/Xcode/DerivedData`, specify `with_spm: true` when using the plugin:
|
45
|
+
|
46
|
+
```rb
|
47
|
+
plugin "cocoapods-acknowledgements-addons", add: ["Carthage/Checkouts"], with_spm: true
|
48
|
+
```
|
49
|
+
|
50
|
+
## What's modified?
|
51
|
+
|
34
52
|
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:
|
35
53
|
|
36
54
|
```
|
data/Rakefile
CHANGED
@@ -1,3 +1,26 @@
|
|
1
|
+
desc "Bump versions"
|
2
|
+
task :bump, [:version] do |t, args|
|
3
|
+
version = args[:version]
|
4
|
+
unless version
|
5
|
+
puts %{Usage: rake "bump[version]"}
|
6
|
+
next
|
7
|
+
end
|
8
|
+
|
9
|
+
Dir.chdir("example") { sh "xcrun agvtool new-marketing-version #{version}" }
|
10
|
+
|
11
|
+
spec = "lib/version.rb"
|
12
|
+
text = File.read spec
|
13
|
+
File.write spec, text.gsub(%r(\"\d+\.\d+\.\d+\"), "\"#{version}\"")
|
14
|
+
puts "Updated #{spec} to #{version}"
|
15
|
+
|
16
|
+
changelog = "CHANGELOG.md"
|
17
|
+
text = File.read changelog
|
18
|
+
File.write changelog, text.gsub(%r(Next release), "#{version}")
|
19
|
+
puts "Updated #{changelog} to #{version}"
|
20
|
+
|
21
|
+
Rake::Task["install"].execute
|
22
|
+
end
|
23
|
+
|
1
24
|
desc "Launch the example app"
|
2
25
|
task :example do
|
3
26
|
Rake::Task["install"].execute
|
@@ -6,22 +29,57 @@ end
|
|
6
29
|
|
7
30
|
desc "Use the plugin with the example app"
|
8
31
|
task :install do
|
9
|
-
|
32
|
+
sh "bundle install"
|
33
|
+
Dir.chdir("example") { sh "make install-dependencies" }
|
34
|
+
end
|
35
|
+
|
36
|
+
desc "Update dependencies"
|
37
|
+
task :update do
|
38
|
+
sh "bundle update"
|
39
|
+
Dir.chdir("example") do
|
40
|
+
sh "bundle exec pod install"
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
def xcodebuild(params)
|
45
|
+
return ":" unless params[:action]
|
46
|
+
[
|
47
|
+
%(xcodebuild),
|
48
|
+
%(-workspace App.xcworkspace),
|
49
|
+
%(-scheme App),
|
50
|
+
%(-sdk iphonesimulator),
|
51
|
+
%(-destination 'platform=iOS Simulator,name=iPhone 11,OS=latest'),
|
52
|
+
params[:action],
|
53
|
+
%(| bundle exec xcpretty -c && exit ${PIPESTATUS[0]})
|
54
|
+
].reject(&:nil?).join " "
|
55
|
+
end
|
56
|
+
|
57
|
+
desc "Build the example app"
|
58
|
+
task :build do
|
59
|
+
Dir.chdir("example") do
|
60
|
+
sh "make install-dependencies"
|
61
|
+
sh xcodebuild(action: "clean build")
|
62
|
+
exit $?.exitstatus if not $?.success?
|
63
|
+
end
|
10
64
|
end
|
11
65
|
|
12
66
|
desc "Run the tests in the example app"
|
13
67
|
task :test do
|
14
68
|
Dir.chdir("example") do
|
15
|
-
sh
|
16
|
-
|
17
|
-
|
18
|
-
%(-scheme App),
|
19
|
-
%(-sdk iphonesimulator),
|
20
|
-
%(-destination 'platform=iOS Simulator,name=iPhone X,OS=12.1'),
|
21
|
-
%(clean test),
|
22
|
-
%(| bundle exec xcpretty -c)
|
23
|
-
].join " "
|
69
|
+
sh "make install-dependencies"
|
70
|
+
sh xcodebuild(action: "clean test")
|
71
|
+
exit $?.exitstatus if not $?.success?
|
24
72
|
end
|
25
73
|
end
|
26
74
|
|
75
|
+
desc "Publish gem"
|
76
|
+
task :publish do
|
77
|
+
require "version.rb"
|
78
|
+
version = CocoaPodsAcknowledgements::AddOns::VERSION
|
79
|
+
package = "cocoapods-acknowledgements-addons-#{version}.gem"
|
80
|
+
sh "gem build cocoapods_acknowledgements_addons.gemspec"
|
81
|
+
sh "gem push #{package}"
|
82
|
+
sh "gem push --key github --host https://rubygems.pkg.github.com/bcylin #{package}"
|
83
|
+
end
|
84
|
+
|
27
85
|
task :default => ["install"]
|
@@ -3,7 +3,7 @@
|
|
3
3
|
archiveVersion = 1;
|
4
4
|
classes = {
|
5
5
|
};
|
6
|
-
objectVersion =
|
6
|
+
objectVersion = 52;
|
7
7
|
objects = {
|
8
8
|
|
9
9
|
/* Begin PBXBuildFile section */
|
@@ -16,6 +16,7 @@
|
|
16
16
|
B514E8D72286FB73002DAF01 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = B514E8D52286FB73002DAF01 /* LaunchScreen.storyboard */; };
|
17
17
|
B54C08752291CD6700B569A7 /* MethodSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = B54C08742291CD6700B569A7 /* MethodSwizzler.m */; };
|
18
18
|
B5B510B0228B6E7700153ED4 /* AppTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5B510AF228B6E7700153ED4 /* AppTests.swift */; };
|
19
|
+
DD6C119A6BA8DDD2E55440C9 /* Pods_AppTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C93D668DA9B255710A32797B /* Pods_AppTests.framework */; };
|
19
20
|
/* End PBXBuildFile section */
|
20
21
|
|
21
22
|
/* Begin PBXContainerItemProxy section */
|
@@ -31,6 +32,7 @@
|
|
31
32
|
/* Begin PBXFileReference section */
|
32
33
|
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>"; };
|
33
34
|
3E32438F228999D00019890D /* Settings.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = Settings.bundle; sourceTree = "<group>"; };
|
35
|
+
6DF662072BCDF3AB4A495AD6 /* Pods-AppTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AppTests.debug.xcconfig"; path = "Target Support Files/Pods-AppTests/Pods-AppTests.debug.xcconfig"; sourceTree = "<group>"; };
|
34
36
|
708796955B2F3A219047F849 /* Pods-App-settings-metadata.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = "Pods-App-settings-metadata.plist"; path = "../App/Settings.bundle/Pods-App-settings-metadata.plist"; sourceTree = "<group>"; };
|
35
37
|
86483D0B459CFC778983F352 /* Pods-App-metadata.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-App-metadata.plist"; sourceTree = "<group>"; };
|
36
38
|
B514E8C92286FB6E002DAF01 /* App.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = App.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
@@ -44,7 +46,9 @@
|
|
44
46
|
B5B510AD228B6E7600153ED4 /* AppTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = AppTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
45
47
|
B5B510AF228B6E7700153ED4 /* AppTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppTests.swift; sourceTree = "<group>"; };
|
46
48
|
B5B510B1228B6E7700153ED4 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
49
|
+
B940BF30E48917A10E4E323F /* Pods-AppTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AppTests.release.xcconfig"; path = "Target Support Files/Pods-AppTests/Pods-AppTests.release.xcconfig"; sourceTree = "<group>"; };
|
47
50
|
BA157747EC044E59B9C2F90B /* Pods_App.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_App.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
51
|
+
C93D668DA9B255710A32797B /* Pods_AppTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_AppTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
48
52
|
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>"; };
|
49
53
|
/* End PBXFileReference section */
|
50
54
|
|
@@ -61,6 +65,7 @@
|
|
61
65
|
isa = PBXFrameworksBuildPhase;
|
62
66
|
buildActionMask = 2147483647;
|
63
67
|
files = (
|
68
|
+
DD6C119A6BA8DDD2E55440C9 /* Pods_AppTests.framework in Frameworks */,
|
64
69
|
);
|
65
70
|
runOnlyForDeploymentPostprocessing = 0;
|
66
71
|
};
|
@@ -71,6 +76,7 @@
|
|
71
76
|
isa = PBXGroup;
|
72
77
|
children = (
|
73
78
|
BA157747EC044E59B9C2F90B /* Pods_App.framework */,
|
79
|
+
C93D668DA9B255710A32797B /* Pods_AppTests.framework */,
|
74
80
|
);
|
75
81
|
name = Frameworks;
|
76
82
|
sourceTree = "<group>";
|
@@ -82,6 +88,8 @@
|
|
82
88
|
708796955B2F3A219047F849 /* Pods-App-settings-metadata.plist */,
|
83
89
|
214E416B10370E7D6559A33E /* Pods-App.debug.xcconfig */,
|
84
90
|
CC4EEEFD98089300586144D8 /* Pods-App.release.xcconfig */,
|
91
|
+
6DF662072BCDF3AB4A495AD6 /* Pods-AppTests.debug.xcconfig */,
|
92
|
+
B940BF30E48917A10E4E323F /* Pods-AppTests.release.xcconfig */,
|
85
93
|
);
|
86
94
|
path = Pods;
|
87
95
|
sourceTree = "<group>";
|
@@ -156,6 +164,7 @@
|
|
156
164
|
isa = PBXNativeTarget;
|
157
165
|
buildConfigurationList = B5B510B6228B6E7700153ED4 /* Build configuration list for PBXNativeTarget "AppTests" */;
|
158
166
|
buildPhases = (
|
167
|
+
94BA6AFFCEC67D5E085DFAEB /* [CP] Check Pods Manifest.lock */,
|
159
168
|
B5B510A9228B6E7600153ED4 /* Sources */,
|
160
169
|
B5B510AA228B6E7600153ED4 /* Frameworks */,
|
161
170
|
B5B510AB228B6E7600153ED4 /* Resources */,
|
@@ -199,6 +208,9 @@
|
|
199
208
|
Base,
|
200
209
|
);
|
201
210
|
mainGroup = B514E8C02286FB6E002DAF01;
|
211
|
+
packageReferences = (
|
212
|
+
3E48C95723F1A1E400AA53EF /* RemoteSwiftPackageReference */,
|
213
|
+
);
|
202
214
|
productRefGroup = B514E8CA2286FB6E002DAF01 /* Products */;
|
203
215
|
projectDirPath = "";
|
204
216
|
projectRoot = "";
|
@@ -232,7 +244,7 @@
|
|
232
244
|
/* End PBXResourcesBuildPhase section */
|
233
245
|
|
234
246
|
/* Begin PBXShellScriptBuildPhase section */
|
235
|
-
|
247
|
+
94BA6AFFCEC67D5E085DFAEB /* [CP] Check Pods Manifest.lock */ = {
|
236
248
|
isa = PBXShellScriptBuildPhase;
|
237
249
|
buildActionMask = 2147483647;
|
238
250
|
files = (
|
@@ -240,16 +252,31 @@
|
|
240
252
|
inputFileListPaths = (
|
241
253
|
);
|
242
254
|
inputPaths = (
|
243
|
-
"${
|
244
|
-
"${
|
245
|
-
"${BUILT_PRODUCTS_DIR}/CPDAcknowledgements/CPDAcknowledgements.framework",
|
255
|
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
256
|
+
"${PODS_ROOT}/Manifest.lock",
|
246
257
|
);
|
247
|
-
name = "[CP]
|
258
|
+
name = "[CP] Check Pods Manifest.lock";
|
248
259
|
outputFileListPaths = (
|
249
260
|
);
|
250
261
|
outputPaths = (
|
251
|
-
"$
|
252
|
-
|
262
|
+
"$(DERIVED_FILE_DIR)/Pods-AppTests-checkManifestLockResult.txt",
|
263
|
+
);
|
264
|
+
runOnlyForDeploymentPostprocessing = 0;
|
265
|
+
shellPath = /bin/sh;
|
266
|
+
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";
|
267
|
+
showEnvVarsInLog = 0;
|
268
|
+
};
|
269
|
+
C1EE9EAD67508784EAE1171E /* [CP] Embed Pods Frameworks */ = {
|
270
|
+
isa = PBXShellScriptBuildPhase;
|
271
|
+
buildActionMask = 2147483647;
|
272
|
+
files = (
|
273
|
+
);
|
274
|
+
inputFileListPaths = (
|
275
|
+
"${PODS_ROOT}/Target Support Files/Pods-App/Pods-App-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
276
|
+
);
|
277
|
+
name = "[CP] Embed Pods Frameworks";
|
278
|
+
outputFileListPaths = (
|
279
|
+
"${PODS_ROOT}/Target Support Files/Pods-App/Pods-App-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
253
280
|
);
|
254
281
|
runOnlyForDeploymentPostprocessing = 0;
|
255
282
|
shellPath = /bin/sh;
|
@@ -479,6 +506,7 @@
|
|
479
506
|
};
|
480
507
|
B5B510B4228B6E7700153ED4 /* Debug */ = {
|
481
508
|
isa = XCBuildConfiguration;
|
509
|
+
baseConfigurationReference = 6DF662072BCDF3AB4A495AD6 /* Pods-AppTests.debug.xcconfig */;
|
482
510
|
buildSettings = {
|
483
511
|
BUNDLE_LOADER = "$(TEST_HOST)";
|
484
512
|
CODE_SIGN_STYLE = Automatic;
|
@@ -498,6 +526,7 @@
|
|
498
526
|
};
|
499
527
|
B5B510B5228B6E7700153ED4 /* Release */ = {
|
500
528
|
isa = XCBuildConfiguration;
|
529
|
+
baseConfigurationReference = B940BF30E48917A10E4E323F /* Pods-AppTests.release.xcconfig */;
|
501
530
|
buildSettings = {
|
502
531
|
BUNDLE_LOADER = "$(TEST_HOST)";
|
503
532
|
CODE_SIGN_STYLE = Automatic;
|
@@ -546,6 +575,17 @@
|
|
546
575
|
defaultConfigurationName = Release;
|
547
576
|
};
|
548
577
|
/* End XCConfigurationList section */
|
578
|
+
|
579
|
+
/* Begin XCRemoteSwiftPackageReference section */
|
580
|
+
3E48C95723F1A1E400AA53EF /* RemoteSwiftPackageReference */ = {
|
581
|
+
isa = XCRemoteSwiftPackageReference;
|
582
|
+
repositoryURL = "https://github.com/Quick/Quick";
|
583
|
+
requirement = {
|
584
|
+
kind = upToNextMajorVersion;
|
585
|
+
minimumVersion = 2.2.0;
|
586
|
+
};
|
587
|
+
};
|
588
|
+
/* End XCRemoteSwiftPackageReference section */
|
549
589
|
};
|
550
590
|
rootObject = B514E8C12286FB6E002DAF01 /* Project object */;
|
551
591
|
}
|