gonative-cli 1.0.5 → 1.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e0e069a9d419de934125aa9a4fe89224c83d0a85d8402542781e0e6f675d980c
4
- data.tar.gz: 8600827abe689021828dc9edc6575c5a9f47722c9291bbd39bb0c4f8d55c3632
3
+ metadata.gz: 6178fe6ef55bb30d95242037998fe89c3e011ca95dbdcad898cc64bf028e4815
4
+ data.tar.gz: 422a57c1f3f3af2122fa1a81d7d0347741218aab5ef250b87fdb621a9d08b83e
5
5
  SHA512:
6
- metadata.gz: d97a108fbe118000f4d50860932235053c9b0a596af18d1e10c345cd4ebf92133a18d235ed277fe3105474a806e7a8a1bec17221b06d9d833e30774d3dc39a0f
7
- data.tar.gz: cd2484f3b45cb2e13c859842e7269c0fe282fbf585411202bbf38161d153a02eb52921cb54bd47d0561edb7ffb0950c4cf94e61279ecf19ba354db93ed71fa2f
6
+ metadata.gz: 8ee760673f579b91bd59683b36cbe689bc75f6de7cb958eb262356712d1a80b4de3036aa31ac557f86a87f254078dce23ed74ae3b391f5d2ac7846161df8c8e7
7
+ data.tar.gz: 40fdf89762074e9e0e8e40dd5ca1c7e667db8a281ae6e7758d42fdd6f9573ebf86373ae4525f271c94e6a2fc41041a11b0ca8b5be1adec916357a1535c31fd66
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- gonative-cli (1.0.4)
4
+ gonative-cli (1.0.6)
5
5
  activesupport (~> 6.0)
6
6
  cocoapods (~> 1.10)
7
7
  colorize (~> 0.8.0)
@@ -14,14 +14,14 @@ GEM
14
14
  specs:
15
15
  CFPropertyList (3.0.5)
16
16
  rexml
17
- activesupport (6.1.6.1)
17
+ activesupport (6.1.7)
18
18
  concurrent-ruby (~> 1.0, >= 1.0.2)
19
19
  i18n (>= 1.6, < 2)
20
20
  minitest (>= 5.1)
21
21
  tzinfo (~> 2.0)
22
22
  zeitwerk (~> 2.3)
23
- addressable (2.8.0)
24
- public_suffix (>= 2.0.2, < 5.0)
23
+ addressable (2.8.1)
24
+ public_suffix (>= 2.0.2, < 6.0)
25
25
  algoliasearch (1.27.5)
26
26
  httpclient (~> 2.8, >= 2.8.3)
27
27
  json (>= 1.5.1)
@@ -69,7 +69,7 @@ GEM
69
69
  coderay (1.1.3)
70
70
  colored2 (3.1.2)
71
71
  colorize (0.8.1)
72
- concurrent-ruby (1.1.10)
72
+ concurrent-ruby (1.2.0)
73
73
  diff-lcs (1.4.4)
74
74
  dry-cli (0.7.0)
75
75
  escape (0.0.4)
@@ -84,7 +84,7 @@ GEM
84
84
  concurrent-ruby (~> 1.0)
85
85
  json (2.6.2)
86
86
  method_source (1.0.0)
87
- minitest (5.16.2)
87
+ minitest (5.16.3)
88
88
  molinillo (0.8.0)
89
89
  nanaimo (0.3.0)
90
90
  nap (1.1.0)
@@ -144,9 +144,10 @@ GEM
144
144
  colored2 (~> 3.1)
145
145
  nanaimo (~> 0.3.0)
146
146
  rexml (~> 3.2.4)
147
- zeitwerk (2.6.0)
147
+ zeitwerk (2.6.1)
148
148
 
149
149
  PLATFORMS
150
+ arm64-darwin-21
150
151
  x86_64-darwin-19
151
152
  x86_64-darwin-21
152
153
 
data/README.md CHANGED
@@ -23,7 +23,9 @@ Install the gem now using:
23
23
 
24
24
  ## Usage
25
25
 
26
- TODO: Write usage instructions here
26
+ You can get all possible usage commands by typing
27
+
28
+ gonative help
27
29
 
28
30
  ## Development
29
31
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GoNative
4
- VERSION = "1.0.5"
4
+ VERSION = "1.0.6"
5
5
  end
@@ -1,3 +1,7 @@
1
+ def safeExtGet(prop, fallback) {
2
+ rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
3
+ }
4
+
1
5
  plugins {
2
6
  id 'com.android.library'
3
7
  }
@@ -28,6 +32,6 @@ android {
28
32
  }
29
33
 
30
34
  dependencies {
31
- implementation 'com.github.gonativeio:gonative-android-library:+'
32
- implementation 'com.github.gonativeio:gonative-android-core:+'
35
+ implementation "com.github.gonativeio:gonative-android-library:${safeExtGet('libraryVersion', '1.2.+')}"
36
+ implementation "com.github.gonativeio:gonative-android-core:${safeExtGet('coreVersion', '1.3.+')}"
33
37
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gonative-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.5
4
+ version: 1.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hunaid Hassan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-13 00:00:00.000000000 Z
11
+ date: 2023-02-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dry-cli
@@ -255,7 +255,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
255
255
  - !ruby/object:Gem::Version
256
256
  version: '0'
257
257
  requirements: []
258
- rubygems_version: 3.2.22
258
+ rubygems_version: 3.3.7
259
259
  signing_key:
260
260
  specification_version: 4
261
261
  summary: CLI to create gonative plugins.