gonative-cli 0.7.1 → 0.7.2

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: 4af471ce3d35ecf2570f943a4dfd18d26c531349cdef2ee760582df701847ccd
4
- data.tar.gz: f288b0f03241d7e9be4868a94a3cffee602e9e98ecbbf0c578ed82013152e448
3
+ metadata.gz: a5432553e2213fc0208a429d39cb973f3ed7ebd88e76096599882fea9d2195cf
4
+ data.tar.gz: 36543de609799b0308fb891ce7c3ab5921f8fdb98b97d181a660839cc62c40b9
5
5
  SHA512:
6
- metadata.gz: c9b45097ffb8e46cc425e8e4f85c69da22d03bf0b7fa657fd9b3ad83d1de1083dc9d4f20c0e2a1751526385bde7dfb3103c7355db7908cd034b0701e3a537ffe
7
- data.tar.gz: eeca631c90a9d0d2a81d35a892a26c4a6b8b70a758f570f2a1f4a684bde4ed0a743360d67e3b3cd50f85d581b4406a9b32fef50625bc7aa5d122a378f43a1005
6
+ metadata.gz: df9a65e776646d617a45724e65ae28619b6153b1b65bebdf35c66894c146b82464f5c3d137322bb61b0f78aec08c6d801370758d5bd49ff686b93faad182df51
7
+ data.tar.gz: f2a4bdc82d6a75fc16a86bbe911d6306531b405307efbe1a2d655cfa900bcda1de3dd7ca05161edb7f1feeea76b6a0d346f0dc380ad33f53042308f0cf8b2ba3
@@ -2,6 +2,7 @@
2
2
 
3
3
  require 'cocoapods'
4
4
  require 'xcodeproj'
5
+ require 'active_support/core_ext/string/inflections'
5
6
 
6
7
  module GoNative
7
8
  module Plugins
@@ -16,7 +17,7 @@ module GoNative
16
17
  attr_reader :plugin_name
17
18
 
18
19
  def initialize
19
- @plugin_name = Utils::SanitizePluginName.call(FileUtils.pwd.split('/').last, 'ios') + 'Plugin'
20
+ @plugin_name = Utils::SanitizePluginName.call(FileUtils.pwd.split('/').last, 'ios').capitalize + 'Plugin'
20
21
  end
21
22
 
22
23
  def call
@@ -74,7 +75,7 @@ module GoNative
74
75
  end
75
76
 
76
77
  def move_framework_file
77
- FileUtils.mv("XCFramework/#{plugin_name}.xcframework", '..')
78
+ FileUtils.mv("XCFramework", '..')
78
79
  end
79
80
  end
80
81
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GoNative
4
- VERSION = "0.7.1"
4
+ VERSION = "0.7.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gonative-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1
4
+ version: 0.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hunaid Hassan