cocoapods-lazy 0.1.3 → 0.1.6
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-lazy.rb +9 -3
- data/lib/cocoapods-lazy/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e0de1306acc188125b6a3f63142146ab5e0827c2
|
4
|
+
data.tar.gz: 53c8c14ffbd45b114ca484700281b1b8e362bd72
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 20dd217ea2aa7a9afbad1ea7072e7b0dcf59be67933b05ad28c72eab403b0bb9e3e7dbbad8500f44df6ce473d9ff72345cd3836fe16e1e9e74c9bdf96bf932df
|
7
|
+
data.tar.gz: 95e24766278418a6f449eb6cc48a8bf3e6ef00668e3b8bc71c02b863c3f132c91b3ac29a6810592957e11bd016f1761c52d0adbb3568780335f7173cfbff7191
|
data/lib/cocoapods-lazy.rb
CHANGED
@@ -31,13 +31,14 @@ module CocoapodsLazy
|
|
31
31
|
puts 'Drop pods'
|
32
32
|
`rm -rf Pods`
|
33
33
|
@repository.download(name: read_podfile_checksum())
|
34
|
+
pod_install(ARGV)
|
35
|
+
store()
|
34
36
|
else
|
35
37
|
puts 'Pods is actual'
|
38
|
+
pod_install(ARGV)
|
36
39
|
end
|
37
|
-
Pod::Command.run(ARGV)
|
38
|
-
store() if read_podfile_checksum() != read_manifest_checksum()
|
39
40
|
end
|
40
|
-
|
41
|
+
|
41
42
|
def update
|
42
43
|
Pod::Command.run(ARGV)
|
43
44
|
store()
|
@@ -56,5 +57,10 @@ module CocoapodsLazy
|
|
56
57
|
def read_manifest_checksum
|
57
58
|
PodfileLock.new("./Pods/Manifest.lock").checksum
|
58
59
|
end
|
60
|
+
|
61
|
+
def pod_install(argv)
|
62
|
+
puts 'run pod install for actualize workspace'
|
63
|
+
Pod::Command.run(argv)
|
64
|
+
end
|
59
65
|
end
|
60
66
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cocoapods-lazy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Artem Mylnikov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-07-
|
11
|
+
date: 2019-07-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: dotenv
|