pkg-maintainer 1.1.7 → 1.1.8
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/maintainer/version.rb +1 -1
- data/lib/maintainer.rb +11 -11
- 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: a3637702b4edf739bf5e6e31e20d4de14e2d228fe36344f73515a4037f83979a
|
4
|
+
data.tar.gz: 715b9e8d092c26aa1af41534b3840e1a9de9d0c8f122ae28de7e72d68d498b42
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ab9fa0eced0c118e4a302ab9c8313bb57d728fa785b7a4fc1aef240851531608f03dadf9f810aa34f61ff2c79f7f13f25eff14ca92b826bb131bd603c1c709a7
|
7
|
+
data.tar.gz: 6789c0a5a4e4fb2ea54ac0095af6c65ab7c8bcb1f0e28f3a3f17bc6a08ea557372575017c28f726e3777e2de66a6a7dacb8585bfb136cf69cc812fe6588c2a97
|
data/Gemfile.lock
CHANGED
data/lib/maintainer/version.rb
CHANGED
data/lib/maintainer.rb
CHANGED
@@ -2,31 +2,31 @@ module Maintainer
|
|
2
2
|
class Runner
|
3
3
|
class << self
|
4
4
|
def setup
|
5
|
-
|
6
|
-
|
5
|
+
Writer.welcome!
|
6
|
+
Setup.setup!
|
7
7
|
end
|
8
8
|
def pod(podname: nil)
|
9
|
-
|
10
|
-
|
9
|
+
Writer.write(message: "Adding the pod: #{podname}")
|
10
|
+
CocoapodRunner.add_pod(pod: podname)
|
11
11
|
end
|
12
12
|
def update_all!()
|
13
|
-
|
14
|
-
|
13
|
+
Writer.write(message: "Updating All.....")
|
14
|
+
Updater.update_all!
|
15
15
|
end
|
16
16
|
def podinit
|
17
|
-
|
17
|
+
CocoapodRunner.create_podfile!
|
18
18
|
end
|
19
19
|
def uninstall_cocoapods
|
20
|
-
|
20
|
+
CocoapodRunner.uninstall_cocoapods!
|
21
21
|
end
|
22
22
|
def install_cocoapods
|
23
|
-
|
23
|
+
CocoapodRunner.install_cocoapods!
|
24
24
|
end
|
25
25
|
def install_git
|
26
|
-
|
26
|
+
GitRunner.install_git!
|
27
27
|
end
|
28
28
|
def uninstall_git
|
29
|
-
|
29
|
+
GitRunner.uninstall_git!
|
30
30
|
end
|
31
31
|
end
|
32
32
|
end
|