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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7f1cb523502d716e94d5a46c77f57002c83b651b87ee0d39f168191bdbc41fe5
4
- data.tar.gz: 4e49cfe3cfbd9c30cc3fc700057bf0f7d12e85891b09347aabfef63027b85904
3
+ metadata.gz: 502329b2dfa909257cdc9a10dae6bfbeb9caed02a4de0f4c73067a79dc26a113
4
+ data.tar.gz: ab38249fa9b127cd2fe4baec9c16522b086c2eefb061dedde70399aaa1ec30d7
5
5
  SHA512:
6
- metadata.gz: 8f79605c523e021d6c74731e6a9166d8a31d0c1466c7eeb3c1af469cc3ed62e05cf98443eb768f8615d2f673fba86b5458cdd7fa7c8c28b52f550a5cd1546e19
7
- data.tar.gz: 88f13c2cfcf1799177a9f768bd87a46c7fb104966e3c30effd9b054d4409569dcc54c34bd3bd70a6761dea55c93e92ce1056b7c729133effa0dae555f899ae4c
6
+ metadata.gz: abb9b4d9dd9098a2c3b04f9ddb15c18fbb541db1589cb4040f11b06e0a711e60fb59ec6cba9f4c7f2bf1b5d4cd901bef03268a9431537fb9bcae84d061a229a6
7
+ data.tar.gz: c8ec0c0f874390cf28aa09aac0e05bb702cb2f233dbf295f1e7d4e5c7a1edb3238f280a6c7585f03fc95caee093b4934de342c8780eccc8c842f6c12a3247d80
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- gonative-cli (0.5.2)
4
+ gonative-cli (0.5.3)
5
5
  activesupport (~> 6.0)
6
6
  cocoapods (~> 1.10)
7
7
  colorize (~> 0.8.0)
data/README.md CHANGED
@@ -1,22 +1,23 @@
1
1
  # Gonative::Cli
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/gonative/cli`. To experiment with that code, run `bin/console` for an interactive prompt.
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
- Add this line to your application's Gemfile:
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
- ```ruby
12
- gem 'gonative-cli'
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
- And then execute:
16
+ After that you will need to restart the terminal application for changes to take effect.
16
17
 
17
- $ bundle install
18
+ Confirm the installation by running `ruby -v`
18
19
 
19
- Or install it yourself as:
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GoNative
4
- VERSION = "0.5.3"
4
+ VERSION = "0.5.4"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gonative-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.3
4
+ version: 0.5.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hunaid Hassan