cocoapods-patch 1.0.2 → 1.2.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/lib/cocoapods_patch.rb +1 -1
- data/lib/pod/hook.rb +2 -1
- metadata +8 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1105a246c269e0a64d3e722c32abbec432a34c18e8292a30575278278c7f8eed
|
|
4
|
+
data.tar.gz: 7940be1b046e9da03058165b59a7e8ea17a5bb041d477b5d43a26d4453e78d39
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6dabcfc809340166278d5fa77752b09497b6c9010460e3ea6fb5d77807d93c12a1eda3bca71c4cafbe6dadf993ccd22c0280820290320ce64b243dca4deed096
|
|
7
|
+
data.tar.gz: 03bf7d46a65ff0553f3931b76e66f605a0194295170b3c93133f7bc63503de7a25d0b0bfc4e8003b491fdb26f9f0648d4d54b9273223cb678c31225692822e19
|
data/CHANGELOG.md
CHANGED
|
@@ -12,6 +12,16 @@ To install or update cocoapods-patch see [README](https://github.com/DoubleSymme
|
|
|
12
12
|
|
|
13
13
|
* None.
|
|
14
14
|
|
|
15
|
+
## 1.2.0 (14.6.23)
|
|
16
|
+
|
|
17
|
+
##### Enhancements
|
|
18
|
+
|
|
19
|
+
* cocoapods 1.12.0 compatibility.
|
|
20
|
+
|
|
21
|
+
##### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* None.
|
|
24
|
+
|
|
15
25
|
## 1.0.2 (6.12.21)
|
|
16
26
|
|
|
17
27
|
##### Enhancements
|
data/lib/cocoapods_patch.rb
CHANGED
data/lib/pod/hook.rb
CHANGED
|
@@ -11,7 +11,8 @@ module CocoapodsPatch
|
|
|
11
11
|
patches = patches_dir.each_child.select { |c| c.to_s.end_with?('.diff') }
|
|
12
12
|
patches.each do |p|
|
|
13
13
|
pod_name = File.basename(p, ".diff")
|
|
14
|
-
context.sandbox.
|
|
14
|
+
pod_dir = context.sandbox.pod_dir(pod_name)
|
|
15
|
+
context.sandbox.clean_pod(pod_name, pod_dir)
|
|
15
16
|
end
|
|
16
17
|
end
|
|
17
18
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cocoapods-patch
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0
|
|
4
|
+
version: 1.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Double Symmetry
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-07-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cocoapods
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 1.
|
|
19
|
+
version: 1.12.0
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 1.
|
|
26
|
+
version: 1.12.0
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: bundler
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -87,7 +87,7 @@ homepage: https://github.com/DoubleSymmetry/cocoapods-patch
|
|
|
87
87
|
licenses:
|
|
88
88
|
- MIT
|
|
89
89
|
metadata: {}
|
|
90
|
-
post_install_message:
|
|
90
|
+
post_install_message:
|
|
91
91
|
rdoc_options: []
|
|
92
92
|
require_paths:
|
|
93
93
|
- lib
|
|
@@ -102,8 +102,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
102
102
|
- !ruby/object:Gem::Version
|
|
103
103
|
version: '0'
|
|
104
104
|
requirements: []
|
|
105
|
-
rubygems_version: 3.
|
|
106
|
-
signing_key:
|
|
105
|
+
rubygems_version: 3.4.1
|
|
106
|
+
signing_key:
|
|
107
107
|
specification_version: 4
|
|
108
108
|
summary: Create & apply patches to Pods
|
|
109
109
|
test_files: []
|