cocoapods-cafswitcher 0.0.8 → 0.0.9
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/Gemfile.lock +1 -1
- data/lib/cocoapods-cafswitcher/gem_version.rb +1 -1
- data/lib/cocoapods-cafswitcher/podfile_switch.rb +5 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dabca190e44ceba2529e89ce358b5d6c7058e51e7c01502ac86bc9aa5dd89226
|
|
4
|
+
data.tar.gz: 1344e1608a8a323e1cb162e84fe3dc5965faba75d12432adf88733f918d82af2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 934970392ac8f20b591b404404e10b048a1528d497db540e3778a45ce802eb4c3d88cb60a3f76a9547fc5221d83f8b8a33b1d7266d4f92f42bc5c441d390e3f2
|
|
7
|
+
data.tar.gz: 8b2d0580501649360e335a0bfa863d1bb30954e51297bf808da4feac10bdd191a70ec3ee378e14db3d9552ceba4a3cfb01804d156a1172c01ed61ada740e072f
|
data/Gemfile.lock
CHANGED
|
@@ -182,7 +182,11 @@ module Pod
|
|
|
182
182
|
isPath = options.has_key?(:path)
|
|
183
183
|
# pod_name = Specification.root_name(name)
|
|
184
184
|
if isPath
|
|
185
|
-
|
|
185
|
+
index = name =~ /[\/]/
|
|
186
|
+
if not index
|
|
187
|
+
index = name.length
|
|
188
|
+
end
|
|
189
|
+
Pod::Podfile.needUpdatePodList << name[0,index]
|
|
186
190
|
end
|
|
187
191
|
requirements.pop if options.empty?
|
|
188
192
|
end
|