gonative-cli 1.2.2 → 1.2.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: 2b6ecdffb0ef7622a9e2c4bbab226dcfabb7fcfd6c2b812f0e9d4492af2ab78c
4
- data.tar.gz: 61205ced579aa0787db3fc4cf88fd958d916c4a00a6aece6381f8114b234c4b0
3
+ metadata.gz: 2ab042efeee71821aba3c8ff7f29c8b105b45bb54f0c3711fdacf6b4917dfa3d
4
+ data.tar.gz: 8f82f2570bd5e161704ab3aa55275ee1d174964aa689261b09e148a56ef5f8cf
5
5
  SHA512:
6
- metadata.gz: 2ebb2cf3a39e5e4a4390a4427b74443aff3f4f4bfdadb2b9e409e88fe4009340608a34ad801dc52e2e66bf622f9c74f2f27b7d3af85ed5a29e196d87eecbaace
7
- data.tar.gz: 9703f0d27285ee645e3311cead965481442957b47bc0d1e9396c95667a87dc780d9250b8af70af30434f9f55499a97c889fb34b078445ddda508edd78223248c
6
+ metadata.gz: 4324577a90f436715e39696526556f006f9716a15853e5fd04bd65618424ff093a3106f22019112b015cdc5f613041a00d8be67381e25c905a196eabb55ece8f
7
+ data.tar.gz: 7a91ebdeb8f509c0eedbfe3d1bd0688a8d01cc959da4e2c404dfc9b00fd20692b5d65784cea5e43176dd17f18f13680b0fad1e0aae308e07125a915ea6ec77ec
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- gonative-cli (1.2.2)
4
+ gonative-cli (1.2.4)
5
5
  activesupport (~> 6.0)
6
6
  cocoapods (~> 1.10)
7
7
  colorize (~> 0.8.0)
@@ -80,7 +80,7 @@ GEM
80
80
  fuzzy_match (2.0.4)
81
81
  gh_inspector (1.1.3)
82
82
  httpclient (2.8.3)
83
- i18n (1.12.0)
83
+ i18n (1.14.1)
84
84
  concurrent-ruby (~> 1.0)
85
85
  json (2.6.2)
86
86
  method_source (1.0.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.8)
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['GENERATE_INFOPLIST_FILE'] = 'YES'
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
@@ -15,7 +15,7 @@ module GoNative
15
15
  end
16
16
 
17
17
  def call
18
- system("git mv GoNativeIOS.xcodeproj #{proj_path}")
18
+ system("mv GoNativeIOS.xcodeproj #{proj_path}")
19
19
  @proj = Xcodeproj::Project.open(proj_path)
20
20
  rename_target!
21
21
  recreate_scheme!
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GoNative
4
- VERSION = '1.2.2'
4
+ VERSION = '1.2.4'
5
5
  end
@@ -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.2
4
+ version: 1.2.4
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-05-05 00:00:00.000000000 Z
11
+ date: 2023-08-22 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