gonative-cli 0.5.3 → 0.5.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +11 -10
- data/lib/gonative/plugins/ios/release.rb +2 -2
- 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: 502329b2dfa909257cdc9a10dae6bfbeb9caed02a4de0f4c73067a79dc26a113
|
4
|
+
data.tar.gz: ab38249fa9b127cd2fe4baec9c16522b086c2eefb061dedde70399aaa1ec30d7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: abb9b4d9dd9098a2c3b04f9ddb15c18fbb541db1589cb4040f11b06e0a711e60fb59ec6cba9f4c7f2bf1b5d4cd901bef03268a9431537fb9bcae84d061a229a6
|
7
|
+
data.tar.gz: c8ec0c0f874390cf28aa09aac0e05bb702cb2f233dbf295f1e7d4e5c7a1edb3238f280a6c7585f03fc95caee093b4934de342c8780eccc8c842f6c12a3247d80
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,22 +1,23 @@
|
|
1
1
|
# Gonative::Cli
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
3
|
+
This cli is a tool to create/publish new plugins for GoNative apps.
|
6
4
|
|
7
5
|
## Installation
|
8
6
|
|
9
|
-
|
7
|
+
This gem has a minimum Ruby version requirement which is 2.7.0+ macOS comes with Ruby 2.6 and so built-in Ruby cannot be used for this gem.
|
8
|
+
|
9
|
+
### Homebrew
|
10
10
|
|
11
|
-
|
12
|
-
|
13
|
-
|
11
|
+
You can install newer versions of Ruby using homebrew by using
|
12
|
+
|
13
|
+
$ brew install ruby
|
14
|
+
$ echo 'export PATH="/usr/local/opt/ruby/bin:$PATH"' >> ~/.zshrc
|
14
15
|
|
15
|
-
|
16
|
+
After that you will need to restart the terminal application for changes to take effect.
|
16
17
|
|
17
|
-
|
18
|
+
Confirm the installation by running `ruby -v`
|
18
19
|
|
19
|
-
|
20
|
+
Install the gem now using:
|
20
21
|
|
21
22
|
$ gem install gonative-cli
|
22
23
|
|
@@ -53,7 +53,7 @@ module GoNative
|
|
53
53
|
end
|
54
54
|
|
55
55
|
def spec
|
56
|
-
@spec ||= Pod::Specification.from_file(spec_name)
|
56
|
+
@spec ||= ::Pod::Specification.from_file(spec_name)
|
57
57
|
end
|
58
58
|
|
59
59
|
def source
|
@@ -61,7 +61,7 @@ module GoNative
|
|
61
61
|
end
|
62
62
|
|
63
63
|
def sources_manager
|
64
|
-
Pod::Config.instance.sources_manager
|
64
|
+
::Pod::Config.instance.sources_manager
|
65
65
|
end
|
66
66
|
end
|
67
67
|
end
|
data/lib/gonative/version.rb
CHANGED