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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9c776a1fc38b8a256df3593271ef62449d5eb48dd754198e718005c1107f3136
4
- data.tar.gz: ab2a05988e78230620cfd26cd9d68442fcb85b9b1e6b9823bf1737c6d03d6863
3
+ metadata.gz: 2610991c5524233d2dbec2c607df6f4e77c5a62bbb9bcd37613c4a81e1536ade
4
+ data.tar.gz: 8f4fe32810757b991ccc312d0572b88605191a199db4aa0aa19166cec5a66644
5
5
  SHA512:
6
- metadata.gz: e48a2c658ca3d8e47b03294312b945c2a4b9a797f0b6348ecf45b5877db0aaff2beb4470ead4292e1c84e99534f08624bdc345abd6c928bf000559fde0e2c55c
7
- data.tar.gz: 9ef7532fd542f35a45cad2c239266944b8c671d9e5fec3f0c3d15394cd30b60fbdcc1ce6e795ac887f336efdc2b5898f3a633045efe083d7b4092cf1a44f074c
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
@@ -1,3 +1,3 @@
1
1
  module CocoapodsPatch
2
- VERSION = "1.0.2"
2
+ VERSION = "1.3.0"
3
3
  end
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.clean_pod(pod_name)
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.2
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: 2021-12-06 00:00:00.000000000 Z
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: 1.11.0
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: 1.11.0
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.0.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: []