gonative-cli 1.5.3 → 1.5.5

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: a8d858271a2edb3d7f244368729c4f21911cf8a0ad277232893d6745f15ade26
4
- data.tar.gz: 8a5eccdf07a83304eea17a9df44918baa916b9e8e4c28b055a1bb7631c145d01
3
+ metadata.gz: 2edf6448dec8b869c921622879c3d0c7c7678c73f446916ad53c6551dc78aea5
4
+ data.tar.gz: 1165a137804f2d089f97ee6f8fb5e8cba9c40ec72e36e1256473894ceeb77888
5
5
  SHA512:
6
- metadata.gz: e2406719d47e3118760bfc2b4ec257c9abc3c9cf0774ec8e53d553e611e51c2cac57304ca56f611be47c9dc72364c24a90244082d253e647c75dc62593d6a693
7
- data.tar.gz: 49fa3309ce9a6c7603c5c1fe16b765b5695333b634389693319a1f35103612ec7b10e7e5870a5c51f6c29fb6e8d16e058a8dca0e348d8b1be7d17c9015d23292
6
+ metadata.gz: e82c271878525ee29e1425ae291f0622442a82bbd658b4f401d7eb4d49d2e1ab97227e4216701e5922d422376051ee6888268e6c6e0729785c1d9ffd730bb2bf
7
+ data.tar.gz: d5e071c42c8c5ca838953a85b80ec3599cc688cac0e838d1285230fd333d82108b3d91d5a5721ee0a23ef874d55da3c407a36b1b44ed39c846866177a1ad1159
@@ -0,0 +1,11 @@
1
+ # To get started with Dependabot version updates, you'll need to specify which
2
+ # package ecosystems to update and where the package manifests are located.
3
+ # Please see the documentation for all configuration options:
4
+ # https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5
+
6
+ version: 2
7
+ updates:
8
+ - package-ecosystem: "bundler" # See documentation for possible values
9
+ directory: "/" # Location of package manifests
10
+ schedule:
11
+ interval: "weekly"
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- gonative-cli (1.5.3)
4
+ gonative-cli (1.5.5)
5
5
  activesupport (~> 6.0)
6
6
  aws-sdk-s3 (~> 1)
7
7
  cocoapods (~> 1.10)
@@ -167,6 +167,7 @@ GEM
167
167
 
168
168
  PLATFORMS
169
169
  arm64-darwin-21
170
+ arm64-darwin-23
170
171
  x86_64-darwin-19
171
172
  x86_64-darwin-21
172
173
 
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ module GoNative
4
+ module Commands
5
+ module IOS
6
+ class SetMarketingVersion < Base
7
+ desc 'Sets marketing version for iOS project'
8
+
9
+ argument :version, required: true, desc: 'Marketing version for the app (e.g., 1.0.0)'
10
+
11
+ def call(version:, **)
12
+ Plugins::IOS::SetMarketingVersion.call(version)
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ module GoNative
4
+ module Commands
5
+ module IOS
6
+ class SetProjectVersion < Base
7
+ desc 'Sets current project version for iOS project'
8
+
9
+ argument :version, required: true, desc: 'Project version for the app (e.g., 123)'
10
+
11
+ def call(version:, **)
12
+ Plugins::IOS::SetProjectVersion.call(version)
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end
@@ -11,6 +11,8 @@ module GoNative
11
11
  register 'ios embed-extensions', IOS::EmbedExtensions
12
12
  register 'ios embed-scripts', IOS::EmbedScripts
13
13
  register 'ios set-bundle-id', IOS::SetBundleId
14
+ register 'ios set-marketing-version', IOS::SetMarketingVersion
15
+ register 'ios set-project-version', IOS::SetProjectVersion
14
16
  register 'ios rename', IOS::Rename
15
17
  register 'ios version', IOS::Version
16
18
  register 'ios add-language', IOS::AddLanguage
@@ -0,0 +1,51 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'xcodeproj'
4
+
5
+ module GoNative
6
+ module Plugins
7
+ module IOS
8
+ module Helpers
9
+ class BuildSettingUpdater
10
+ extend DSL::Serviceable
11
+
12
+ attr_reader :value, :build_setting_key
13
+
14
+ def initialize(value, build_setting_key)
15
+ @value = value
16
+ @build_setting_key = build_setting_key
17
+ end
18
+
19
+ def call
20
+ update_project
21
+ end
22
+
23
+ private
24
+
25
+ def update_project
26
+ proj = Xcodeproj::Project.open('./MedianIOS.xcodeproj')
27
+
28
+ proj.targets.each do |target|
29
+ # Skip test targets - only process main app and extensions
30
+ case target.product_type
31
+ when Xcodeproj::Constants::PRODUCT_TYPE_UTI[:application],
32
+ Xcodeproj::Constants::PRODUCT_TYPE_UTI[:app_extension]
33
+ set_target_build_setting(target, value)
34
+ else
35
+ next
36
+ end
37
+ end
38
+
39
+ proj.save
40
+ end
41
+
42
+ def set_target_build_setting(target, value)
43
+ target.build_configurations.each do |config|
44
+ config.build_settings[build_setting_key] = value
45
+ end
46
+ end
47
+ end
48
+ end
49
+ end
50
+ end
51
+ end
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ module GoNative
4
+ module Plugins
5
+ module IOS
6
+ class SetMarketingVersion
7
+ extend DSL::Serviceable
8
+
9
+ attr_reader :marketing_version
10
+
11
+ def initialize(marketing_version)
12
+ @marketing_version = marketing_version
13
+ end
14
+
15
+ def call
16
+ Helpers::BuildSettingUpdater.call(marketing_version, 'MARKETING_VERSION')
17
+ end
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ module GoNative
4
+ module Plugins
5
+ module IOS
6
+ class SetProjectVersion
7
+ extend DSL::Serviceable
8
+
9
+ attr_reader :project_version
10
+
11
+ def initialize(project_version)
12
+ @project_version = project_version
13
+ end
14
+
15
+ def call
16
+ Helpers::BuildSettingUpdater.call(project_version, 'CURRENT_PROJECT_VERSION')
17
+ end
18
+ end
19
+ end
20
+ end
21
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GoNative
4
- VERSION = '1.5.3'
4
+ VERSION = '1.5.5'
5
5
  end
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.5.3
4
+ version: 1.5.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hunaid Hassan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-03-05 00:00:00.000000000 Z
11
+ date: 2025-08-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -200,6 +200,7 @@ executables:
200
200
  extensions: []
201
201
  extra_rdoc_files: []
202
202
  files:
203
+ - ".github/dependabot.yml"
203
204
  - ".gitignore"
204
205
  - ".rspec"
205
206
  - ".rubocop.yml"
@@ -229,6 +230,8 @@ files:
229
230
  - lib/gonative/commands/ios/publish.rb
230
231
  - lib/gonative/commands/ios/rename.rb
231
232
  - lib/gonative/commands/ios/set_bundle_id.rb
233
+ - lib/gonative/commands/ios/set_marketing_version.rb
234
+ - lib/gonative/commands/ios/set_project_version.rb
232
235
  - lib/gonative/commands/ios/version.rb
233
236
  - lib/gonative/commands/version.rb
234
237
  - lib/gonative/dsl/error_catchable.rb
@@ -242,10 +245,13 @@ files:
242
245
  - lib/gonative/plugins/ios/embed_scripts.rb
243
246
  - lib/gonative/plugins/ios/extract_extensions.rb
244
247
  - lib/gonative/plugins/ios/helpers.rb
248
+ - lib/gonative/plugins/ios/helpers/build_setting_updater.rb
245
249
  - lib/gonative/plugins/ios/helpers/spec_reader.rb
246
250
  - lib/gonative/plugins/ios/release.rb
247
251
  - lib/gonative/plugins/ios/rename.rb
248
252
  - lib/gonative/plugins/ios/set_bundle_id.rb
253
+ - lib/gonative/plugins/ios/set_marketing_version.rb
254
+ - lib/gonative/plugins/ios/set_project_version.rb
249
255
  - lib/gonative/plugins/ios/verify.rb
250
256
  - lib/gonative/plugins/ios/version.rb
251
257
  - lib/gonative/utils.rb
@@ -298,7 +304,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
298
304
  - !ruby/object:Gem::Version
299
305
  version: '0'
300
306
  requirements: []
301
- rubygems_version: 3.3.7
307
+ rubygems_version: 3.5.3
302
308
  signing_key:
303
309
  specification_version: 4
304
310
  summary: CLI to create gonative plugins.