gonative-cli 0.5.2 → 0.5.3
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/lib/gonative/plugins/ios/release.rb +2 -0
- data/lib/gonative/version.rb +1 -1
- data/templates/plugins/ios/common/PLUGIN_NAME.podspec.tpl +2 -2
- data/templates/plugins/ios/common/Podfile.tpl +0 -1
- data/templates/plugins/ios/common/js/info.plist.json.tpl +1 -0
- metadata +3 -3
- data/lib/gonative/commands/ios/release.rb +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7f1cb523502d716e94d5a46c77f57002c83b651b87ee0d39f168191bdbc41fe5
|
4
|
+
data.tar.gz: 4e49cfe3cfbd9c30cc3fc700057bf0f7d12e85891b09347aabfef63027b85904
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f79605c523e021d6c74731e6a9166d8a31d0c1466c7eeb3c1af469cc3ed62e05cf98443eb768f8615d2f673fba86b5458cdd7fa7c8c28b52f550a5cd1546e19
|
7
|
+
data.tar.gz: 88f13c2cfcf1799177a9f768bd87a46c7fb104966e3c30effd9b054d4409569dcc54c34bd3bd70a6761dea55c93e92ce1056b7c729133effa0dae555f899ae4c
|
data/Gemfile.lock
CHANGED
data/lib/gonative/version.rb
CHANGED
@@ -17,12 +17,12 @@ TODO: Add long description of the pod here.
|
|
17
17
|
|
18
18
|
s.subspec 'Source' do |cs|
|
19
19
|
cs.source_files = '{{PLUGIN_NAME}}/Classes/**/*.{h,m,swift}'
|
20
|
-
cs.resource_bundle = { 'JS' => 'js/*.{js}' }
|
20
|
+
cs.resource_bundle = { 'JS' => 'js/*.{js,json}' }
|
21
21
|
end
|
22
22
|
|
23
23
|
s.subspec 'Binary' do |cs|
|
24
24
|
cs.ios.vendored_frameworks = 'XCFramework/{{PLUGIN_NAME}}.xcframework'
|
25
|
-
cs.resource_bundle = { 'JS' => 'js/*.{js}' }
|
25
|
+
cs.resource_bundle = { 'JS' => 'js/*.{js,json}' }
|
26
26
|
end
|
27
27
|
|
28
28
|
s.default_subspec = 'Source'
|
@@ -0,0 +1 @@
|
|
1
|
+
{}
|
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: 0.5.
|
4
|
+
version: 0.5.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hunaid Hassan
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-10-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: dry-cli
|
@@ -190,7 +190,6 @@ files:
|
|
190
190
|
- lib/gonative/commands/base.rb
|
191
191
|
- lib/gonative/commands/ios/create.rb
|
192
192
|
- lib/gonative/commands/ios/publish.rb
|
193
|
-
- lib/gonative/commands/ios/release.rb
|
194
193
|
- lib/gonative/commands/version.rb
|
195
194
|
- lib/gonative/dsl/error_catchable.rb
|
196
195
|
- lib/gonative/dsl/serviceable.rb
|
@@ -207,6 +206,7 @@ files:
|
|
207
206
|
- templates/plugins/ios/common/PLUGIN_NAME/Info.plist
|
208
207
|
- templates/plugins/ios/common/Podfile.tpl
|
209
208
|
- templates/plugins/ios/common/create-framework.sh.tpl
|
209
|
+
- templates/plugins/ios/common/js/info.plist.json.tpl
|
210
210
|
- templates/plugins/ios/common/js/polyfill.js.tpl
|
211
211
|
- templates/plugins/ios/language-specific/objc/PLUGIN_NAME/Classes/GNPLUGIN_NAME.h.tpl
|
212
212
|
- templates/plugins/ios/language-specific/objc/PLUGIN_NAME/Classes/GNPLUGIN_NAME.m.tpl
|
File without changes
|