gonative-cli 1.2.2 → 1.2.3
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 +2 -2
- data/lib/gonative/plugins/ios/build_framework.rb +2 -1
- data/lib/gonative/version.rb +1 -1
- data/templates/build/ios/Info.plist +26 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ffea0596ed9168dd22544cfe9748e75d0e15dc1bfa1d4b9e0385c3dad884530d
|
4
|
+
data.tar.gz: a3d27c0624fa377508c73fb14fb970ec03d9616c0177d6a05f61e2315a5a4a3d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 69ced34a89481ded58730ea927bf463f838daab595bbef65b739b49ab78baefd495f6ff86ddc40bb92bb54b76f48aa7f292b22adc3be355b76c0dfba030aa175
|
7
|
+
data.tar.gz: 818b148f299d8e708d7899e5b70146201d0c74f13160817ee0cc25cfb39f778abab220e4db84fbf1f422cd9e39b493a69f9ba8fe9261561c105c1adb344bc63f
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
gonative-cli (1.2.
|
4
|
+
gonative-cli (1.2.3)
|
5
5
|
activesupport (~> 6.0)
|
6
6
|
cocoapods (~> 1.10)
|
7
7
|
colorize (~> 0.8.0)
|
@@ -144,7 +144,7 @@ GEM
|
|
144
144
|
colored2 (~> 3.1)
|
145
145
|
nanaimo (~> 0.3.0)
|
146
146
|
rexml (~> 3.2.4)
|
147
|
-
zeitwerk (2.6.
|
147
|
+
zeitwerk (2.6.9)
|
148
148
|
|
149
149
|
PLATFORMS
|
150
150
|
arm64-darwin-21
|
@@ -55,7 +55,8 @@ module GoNative
|
|
55
55
|
add_frameworks(target, main_group)
|
56
56
|
add_headers(target, main_group)
|
57
57
|
target.build_configurations.each do |config|
|
58
|
-
config.build_settings['
|
58
|
+
config.build_settings['INFOPLIST_FILE'] = 'Info.plist'
|
59
|
+
config.build_settings['MARKETING_VERSION'] = spec.version
|
59
60
|
config.build_settings['MODULEMAP_FILE'] = "#{plugin_name}.modulemap"
|
60
61
|
config.build_settings['PRODUCT_BUNDLE_IDENTIFIER'] = "org.cocoapods.#{plugin_name}"
|
61
62
|
end
|
data/lib/gonative/version.rb
CHANGED
@@ -0,0 +1,26 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
3
|
+
<plist version="1.0">
|
4
|
+
<dict>
|
5
|
+
<key>CFBundleDevelopmentRegion</key>
|
6
|
+
<string>${PODS_DEVELOPMENT_LANGUAGE}</string>
|
7
|
+
<key>CFBundleExecutable</key>
|
8
|
+
<string>${EXECUTABLE_NAME}</string>
|
9
|
+
<key>CFBundleIdentifier</key>
|
10
|
+
<string>${PRODUCT_BUNDLE_IDENTIFIER}</string>
|
11
|
+
<key>CFBundleInfoDictionaryVersion</key>
|
12
|
+
<string>6.0</string>
|
13
|
+
<key>CFBundleName</key>
|
14
|
+
<string>${PRODUCT_NAME}</string>
|
15
|
+
<key>CFBundlePackageType</key>
|
16
|
+
<string>FMWK</string>
|
17
|
+
<key>CFBundleShortVersionString</key>
|
18
|
+
<string>${MARKETING_VERSION}</string>
|
19
|
+
<key>CFBundleSignature</key>
|
20
|
+
<string>????</string>
|
21
|
+
<key>CFBundleVersion</key>
|
22
|
+
<string>${CURRENT_PROJECT_VERSION}</string>
|
23
|
+
<key>NSPrincipalClass</key>
|
24
|
+
<string></string>
|
25
|
+
</dict>
|
26
|
+
</plist>
|
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.2.
|
4
|
+
version: 1.2.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: 2023-
|
11
|
+
date: 2023-07-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: dry-cli
|
@@ -218,6 +218,7 @@ files:
|
|
218
218
|
- lib/gonative/utils/template_inflator.rb
|
219
219
|
- lib/gonative/utils/ui.rb
|
220
220
|
- lib/gonative/version.rb
|
221
|
+
- templates/build/ios/Info.plist
|
221
222
|
- templates/build/ios/PLUGIN_NAME-umbrella.h.tpl
|
222
223
|
- templates/build/ios/PLUGIN_NAME.modulemap.tpl
|
223
224
|
- templates/build/ios/Podfile.tpl
|