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 +4 -4
- data/lib/gonative/plugins/ios/build_framework.rb +3 -2
- data/lib/gonative/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a5432553e2213fc0208a429d39cb973f3ed7ebd88e76096599882fea9d2195cf
|
4
|
+
data.tar.gz: 36543de609799b0308fb891ce7c3ab5921f8fdb98b97d181a660839cc62c40b9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
78
|
+
FileUtils.mv("XCFramework", '..')
|
78
79
|
end
|
79
80
|
end
|
80
81
|
end
|
data/lib/gonative/version.rb
CHANGED