gonative-cli 0.4.1 → 0.4.2
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/gonative/plugins/ios/publish/release.rb +0 -5
- data/lib/gonative/version.rb +1 -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: 0ed6fc209dcb54b6ff39fa6d292fdcc47e0ec08c163977b035453910921a15d3
|
4
|
+
data.tar.gz: 94d5007ab0d24868898f0ab16c4b393efdfbb4b4baca121f924b422181ac0ee1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6abf2f2e2dfaa049dbef91b2d1c84e5698b2ac93e161a9968f8c76643b376605c4b5187e60493ce56a9f833266d41765e4a9b4bb1d3410e073769627c9df7d67
|
7
|
+
data.tar.gz: c2aca1855f62cd0f63f695fe4c95fb2421a88e5b303b50427f19248828fdf68105865e07d0d10a3ee0075593941ad74673a173a66d2ad86fe01160dca603aa3a
|
data/Gemfile.lock
CHANGED
@@ -14,7 +14,6 @@ module GoNative
|
|
14
14
|
assert_spec_exists!
|
15
15
|
sources_manager.update(GONATIVE_SOURCE_NAME)
|
16
16
|
assert_not_pushed!
|
17
|
-
verify_lib!
|
18
17
|
create_and_push_tag!
|
19
18
|
push_to_pod_repo!
|
20
19
|
end
|
@@ -36,10 +35,6 @@ module GoNative
|
|
36
35
|
raise Error, "#{name} (#{version}) has already been pushed to #{source.name}" if pushed_versions.include? version.to_s
|
37
36
|
end
|
38
37
|
|
39
|
-
def verify_lib!
|
40
|
-
raise Error, "pod lib lint failed" unless system("pod lib lint #{spec_name} --private")
|
41
|
-
end
|
42
|
-
|
43
38
|
def create_and_push_tag!
|
44
39
|
unless system("git tag | grep #{spec.version} > /dev/null")
|
45
40
|
system "git add -A && git commit -m \"Releases #{spec.version}.\""
|
data/lib/gonative/version.rb
CHANGED