cocoapods-patch 1.0.2 → 1.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 +4 -4
- data/CHANGELOG.md +16 -0
- data/lib/cocoapods_patch.rb +1 -1
- data/lib/pod/hook.rb +2 -1
- metadata +16 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2610991c5524233d2dbec2c607df6f4e77c5a62bbb9bcd37613c4a81e1536ade
|
|
4
|
+
data.tar.gz: 8f4fe32810757b991ccc312d0572b88605191a199db4aa0aa19166cec5a66644
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7ca5960e6d65a0bd033fb8d883f034901edfbe00f4e7b7b3eef3f2fcad6e4d61b3cd42755d81a8da4e0f831fadec32684a66e5e7423cbb2e6d1ab9702ab66d3f
|
|
7
|
+
data.tar.gz: 98f8cd450321b704624772945c4a08d0a46f1ee8315700f51fff67a88c2a6b19913bab55f7e0c4a814d259cbc9652735e4c7e5d440302505a598971ce54cf41f
|
data/CHANGELOG.md
CHANGED
|
@@ -12,6 +12,22 @@ To install or update cocoapods-patch see [README](https://github.com/DoubleSymme
|
|
|
12
12
|
|
|
13
13
|
* None.
|
|
14
14
|
|
|
15
|
+
## 1.3.0 (14.10.23)
|
|
16
|
+
|
|
17
|
+
##### Enhancements
|
|
18
|
+
|
|
19
|
+
- Adds cocoapods support and compatibility for version >=1.12.0 and < 2.0.
|
|
20
|
+
|
|
21
|
+
## 1.2.0 (14.6.23)
|
|
22
|
+
|
|
23
|
+
##### Enhancements
|
|
24
|
+
|
|
25
|
+
* cocoapods 1.12.0 compatibility.
|
|
26
|
+
|
|
27
|
+
##### Bug Fixes
|
|
28
|
+
|
|
29
|
+
* None.
|
|
30
|
+
|
|
15
31
|
## 1.0.2 (6.12.21)
|
|
16
32
|
|
|
17
33
|
##### 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,29 +1,35 @@
|
|
|
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.3.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-11-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cocoapods
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - "
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 1.12.0
|
|
20
|
+
- - "<"
|
|
18
21
|
- !ruby/object:Gem::Version
|
|
19
|
-
version:
|
|
22
|
+
version: '2.0'
|
|
20
23
|
type: :runtime
|
|
21
24
|
prerelease: false
|
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
26
|
requirements:
|
|
24
|
-
- - "
|
|
27
|
+
- - ">="
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: 1.12.0
|
|
30
|
+
- - "<"
|
|
25
31
|
- !ruby/object:Gem::Version
|
|
26
|
-
version:
|
|
32
|
+
version: '2.0'
|
|
27
33
|
- !ruby/object:Gem::Dependency
|
|
28
34
|
name: bundler
|
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -87,7 +93,7 @@ homepage: https://github.com/DoubleSymmetry/cocoapods-patch
|
|
|
87
93
|
licenses:
|
|
88
94
|
- MIT
|
|
89
95
|
metadata: {}
|
|
90
|
-
post_install_message:
|
|
96
|
+
post_install_message:
|
|
91
97
|
rdoc_options: []
|
|
92
98
|
require_paths:
|
|
93
99
|
- lib
|
|
@@ -102,8 +108,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
102
108
|
- !ruby/object:Gem::Version
|
|
103
109
|
version: '0'
|
|
104
110
|
requirements: []
|
|
105
|
-
rubygems_version: 3.
|
|
106
|
-
signing_key:
|
|
111
|
+
rubygems_version: 3.4.20
|
|
112
|
+
signing_key:
|
|
107
113
|
specification_version: 4
|
|
108
114
|
summary: Create & apply patches to Pods
|
|
109
115
|
test_files: []
|