cocoapods-deintegrate 1.0.0 → 1.0.1
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/lib/cocoapods/deintegrate/gem_version.rb +1 -1
- data/lib/cocoapods/deintegrator.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4e5f3c887dc27f68850da1cc1033196dddcef2f7
|
|
4
|
+
data.tar.gz: f59a5c8a1f79702aa10852ab5588c85051b5485f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 11cab2ab5eb4c1e7546d13ae5991e1344d06a65ecfed06f170a29ca51562bd8dc9742839333326a3dd117339ba207a2943a6fd8770c8e6395e0caa1a47c94e2e
|
|
7
|
+
data.tar.gz: 66eae301893f51564380bd1aff11edce413c5dfa0fdf8b2a4ff92be3e707b81eaaec8a74927bd7bd5d7b99fc5cfb3614e4d8eb5e7b1fbe3c4dbdcb27d277ba8f
|
|
@@ -54,7 +54,7 @@ module Pod
|
|
|
54
54
|
|
|
55
55
|
def deintegrate_shell_script_phase(target, phase_name)
|
|
56
56
|
phases = target.shell_script_build_phases.select do |phase|
|
|
57
|
-
phase.name && phase.name =~
|
|
57
|
+
phase.name && phase.name =~ /#{Regexp.escape(phase_name)}\z$/
|
|
58
58
|
end
|
|
59
59
|
|
|
60
60
|
unless phases.empty?
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cocoapods-deintegrate
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kyle Fuller
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-08-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description:
|
|
14
14
|
email:
|
|
@@ -34,17 +34,17 @@ require_paths:
|
|
|
34
34
|
- lib
|
|
35
35
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
36
36
|
requirements:
|
|
37
|
-
- -
|
|
37
|
+
- - ">="
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
39
|
version: 2.0.0
|
|
40
40
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
41
41
|
requirements:
|
|
42
|
-
- -
|
|
42
|
+
- - ">="
|
|
43
43
|
- !ruby/object:Gem::Version
|
|
44
44
|
version: '0'
|
|
45
45
|
requirements: []
|
|
46
46
|
rubyforge_project:
|
|
47
|
-
rubygems_version: 2.
|
|
47
|
+
rubygems_version: 2.4.5.1
|
|
48
48
|
signing_key:
|
|
49
49
|
specification_version: 4
|
|
50
50
|
summary: A CocoaPods plugin to remove and de-integrate CocoaPods from your project.
|