gonative-cli 1.3.0 → 1.3.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/Gemfile.lock +7 -7
- data/lib/gonative/version.rb +1 -1
- data/templates/build/ios/Info.plist +2 -0
- data/templates/plugins/ios/common/.github/workflows/release-pod.yml +57 -0
- data/templates/plugins/ios/common/LICENSE +1 -1
- data/templates/plugins/ios/common/PLUGIN_NAME.podspec.tpl +3 -3
- 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: 8ef02e059ff5c0717aac8097dbf445915dee082bebb01f985df2046206445cc3
|
|
4
|
+
data.tar.gz: 41c6b9dc087274e8dc5cf56199a7760328a9d79396c7803453fc3394283f7774
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 605137fd3b2e8babfcb9cc5851e41df7f89d579bf95741e072afb23a098c2369618edef7c9e097736633f76b3e4fb9bc82180663381b47a9d76af1f7f573e5fe
|
|
7
|
+
data.tar.gz: 43bc2301c2282ce32c93e9abb420f224196508e136394139a032b16952e55c11b8bca31d4f854c77e53499663095a300fb135e3d35ea3badb6142b3777ad5d6a
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
gonative-cli (1.3.
|
|
4
|
+
gonative-cli (1.3.2)
|
|
5
5
|
activesupport (~> 6.0)
|
|
6
6
|
cocoapods (~> 1.10)
|
|
7
7
|
colorize (~> 0.8.0)
|
|
@@ -29,10 +29,10 @@ GEM
|
|
|
29
29
|
atomos (0.1.3)
|
|
30
30
|
byebug (11.1.3)
|
|
31
31
|
claide (1.1.0)
|
|
32
|
-
cocoapods (1.
|
|
32
|
+
cocoapods (1.13.0)
|
|
33
33
|
addressable (~> 2.8)
|
|
34
34
|
claide (>= 1.0.2, < 2.0)
|
|
35
|
-
cocoapods-core (= 1.
|
|
35
|
+
cocoapods-core (= 1.13.0)
|
|
36
36
|
cocoapods-deintegrate (>= 1.0.3, < 2.0)
|
|
37
37
|
cocoapods-downloader (>= 1.6.0, < 2.0)
|
|
38
38
|
cocoapods-plugins (>= 1.0.0, < 2.0)
|
|
@@ -46,8 +46,8 @@ GEM
|
|
|
46
46
|
molinillo (~> 0.8.0)
|
|
47
47
|
nap (~> 1.0)
|
|
48
48
|
ruby-macho (>= 2.3.0, < 3.0)
|
|
49
|
-
xcodeproj (>= 1.
|
|
50
|
-
cocoapods-core (1.
|
|
49
|
+
xcodeproj (>= 1.23.0, < 2.0)
|
|
50
|
+
cocoapods-core (1.13.0)
|
|
51
51
|
activesupport (>= 5.0, < 8)
|
|
52
52
|
addressable (~> 2.8)
|
|
53
53
|
algoliasearch (~> 1.0)
|
|
@@ -137,14 +137,14 @@ GEM
|
|
|
137
137
|
tzinfo (2.0.5)
|
|
138
138
|
concurrent-ruby (~> 1.0)
|
|
139
139
|
unicode-display_width (2.0.0)
|
|
140
|
-
xcodeproj (1.
|
|
140
|
+
xcodeproj (1.23.0)
|
|
141
141
|
CFPropertyList (>= 2.3.3, < 4.0)
|
|
142
142
|
atomos (~> 0.1.3)
|
|
143
143
|
claide (>= 1.0.2, < 2.0)
|
|
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.11)
|
|
148
148
|
|
|
149
149
|
PLATFORMS
|
|
150
150
|
arm64-darwin-21
|
data/lib/gonative/version.rb
CHANGED
|
@@ -16,6 +16,8 @@
|
|
|
16
16
|
<string>FMWK</string>
|
|
17
17
|
<key>CFBundleShortVersionString</key>
|
|
18
18
|
<string>${MARKETING_VERSION}</string>
|
|
19
|
+
<key>GNLibraryVersion</key>
|
|
20
|
+
<string>${MARKETING_VERSION}</string>
|
|
19
21
|
<key>CFBundleSignature</key>
|
|
20
22
|
<string>????</string>
|
|
21
23
|
<key>CFBundleVersion</key>
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
name: Publish a new pod version
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
- master
|
|
8
|
+
workflow_dispatch:
|
|
9
|
+
|
|
10
|
+
jobs:
|
|
11
|
+
release-pod:
|
|
12
|
+
runs-on: macos-latest
|
|
13
|
+
steps:
|
|
14
|
+
- uses: actions/checkout@v2
|
|
15
|
+
with:
|
|
16
|
+
fetch-depth: 0
|
|
17
|
+
|
|
18
|
+
- run: git config --global user.email "noreply@gonative.io"
|
|
19
|
+
- run: git config --global user.name "gonative-bot"
|
|
20
|
+
|
|
21
|
+
- name: Configure ruby
|
|
22
|
+
uses: ruby/setup-ruby@v1
|
|
23
|
+
with:
|
|
24
|
+
ruby-version: 3.1.2
|
|
25
|
+
|
|
26
|
+
- name: Install gonative-cli
|
|
27
|
+
run: gem install gonative-cli
|
|
28
|
+
|
|
29
|
+
- name: Install cocoapods
|
|
30
|
+
run: gem install cocoapods
|
|
31
|
+
|
|
32
|
+
- name: Get version
|
|
33
|
+
run: echo "version=$(gonative ios version)" >> "$GITHUB_ENV"
|
|
34
|
+
|
|
35
|
+
- name: Check if tag already exists
|
|
36
|
+
run: git show-ref --tags --verify --quiet -- "refs/tags/${{ env.version }}" && echo "tagged=1" >> "$GITHUB_ENV" || echo "tagged=0" >> "$GITHUB_ENV"
|
|
37
|
+
|
|
38
|
+
- name: Install SSH key
|
|
39
|
+
uses: shimataro/ssh-key-action@v2
|
|
40
|
+
with:
|
|
41
|
+
key: ${{ secrets.POD_SPEC_SECRET_KEY }}
|
|
42
|
+
known_hosts: unnecessary
|
|
43
|
+
|
|
44
|
+
- name: Add gonative-specs repo
|
|
45
|
+
run: pod repo add gonative-specs git@github.com:gonativeio/gonative-specs.git
|
|
46
|
+
|
|
47
|
+
- name: Publish pod
|
|
48
|
+
if: env.tagged == 0
|
|
49
|
+
run: gonative ios publish --debug
|
|
50
|
+
|
|
51
|
+
- name: Upload build directory
|
|
52
|
+
if: failure()
|
|
53
|
+
uses: actions/upload-artifact@v3
|
|
54
|
+
with:
|
|
55
|
+
name: build-dir
|
|
56
|
+
path: build
|
|
57
|
+
retention-days: 5
|
|
@@ -1 +1 @@
|
|
|
1
|
-
Licensing information available at https://
|
|
1
|
+
Licensing information available at https://median.co/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Pod::Spec.new do |s|
|
|
2
2
|
s.name = '#{plugin_name}'
|
|
3
3
|
s.version = '0.1.0'
|
|
4
|
-
s.summary = '
|
|
4
|
+
s.summary = '#{plugin_name} plugin for Median.'
|
|
5
5
|
|
|
6
6
|
s.description = <<-DESC
|
|
7
7
|
TODO: Add long description of the pod here.
|
|
@@ -12,7 +12,7 @@ TODO: Add long description of the pod here.
|
|
|
12
12
|
s.author = { 'hhunaid' => 'hhunaid@gmail.com' }
|
|
13
13
|
s.source = { :git => 'git@github.com:gonativeio/#{repo_name}.git', :tag => s.version.to_s }
|
|
14
14
|
|
|
15
|
-
s.ios.deployment_target = '
|
|
15
|
+
s.ios.deployment_target = '13.0'
|
|
16
16
|
s.swift_versions = '5.0'
|
|
17
17
|
|
|
18
18
|
s.subspec 'Source' do |cs|
|
|
@@ -27,6 +27,6 @@ TODO: Add long description of the pod here.
|
|
|
27
27
|
cs.preserve_paths = ['plist/*.{plist}', 'Extensions/**/*']
|
|
28
28
|
end
|
|
29
29
|
|
|
30
|
-
s.default_subspec = '
|
|
30
|
+
s.default_subspec = 'Binary'
|
|
31
31
|
s.dependency 'GoNativeCore'
|
|
32
32
|
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.3.
|
|
4
|
+
version: 1.3.2
|
|
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-11-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: dry-cli
|
|
@@ -229,6 +229,7 @@ files:
|
|
|
229
229
|
- templates/plugins/android/proguard-rules.pro
|
|
230
230
|
- templates/plugins/android/src/main/AndroidManifest.xml.tpl
|
|
231
231
|
- templates/plugins/android/src/main/java/io/gonative/android/plugins/JAVA_PACKAGE/PLUGIN_NAME.java.tpl
|
|
232
|
+
- templates/plugins/ios/common/.github/workflows/release-pod.yml
|
|
232
233
|
- templates/plugins/ios/common/.gitignore
|
|
233
234
|
- templates/plugins/ios/common/LICENSE
|
|
234
235
|
- templates/plugins/ios/common/PLUGIN_NAME.podspec.tpl
|