cocoapods-sync-podspecs 0.3.1 → 0.5.0
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/pod/command/push-tag.rb +4 -14
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5529898f04cfc14b416327df63f3c1350fd51df8476f64f58ae5e626cf9cb85e
|
|
4
|
+
data.tar.gz: e9d5449a285814055ec09fc071970369917e63e1eaab78df7e5ee8d2942d29b8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d8ee5e80263b95c5f744fac1831262b748c408a8528d02bf1edc94ab8ca208d21cf644b7c39d71f85e7d480a21eaa09fe4fe6ed40e7924534f912f1880c7a33e
|
|
7
|
+
data.tar.gz: 996c6a9870059778a0092c80fee3b9217735bdfd1434ba89128ec4b2ad059cf303ecfd8dd6f698642bf8685c07b4431c8c368179c1afe19cfd2af7daa305cb70
|
data/lib/pod/command/push-tag.rb
CHANGED
|
@@ -11,7 +11,6 @@ module Pod
|
|
|
11
11
|
|
|
12
12
|
self.arguments = [
|
|
13
13
|
CLAide::Argument.new('Version', false),
|
|
14
|
-
CLAide::Argument.new('NAME.podspec', false),
|
|
15
14
|
]
|
|
16
15
|
|
|
17
16
|
def self.options
|
|
@@ -30,7 +29,6 @@ module Pod
|
|
|
30
29
|
@push_remote = argv.flag?('push-remote', false)
|
|
31
30
|
@tag_version = argv.shift_argument
|
|
32
31
|
@current_repo_dir = ''
|
|
33
|
-
@podspec = argv.shift_argument
|
|
34
32
|
super
|
|
35
33
|
end
|
|
36
34
|
|
|
@@ -185,19 +183,11 @@ module Pod
|
|
|
185
183
|
|
|
186
184
|
# @return [Array<Pathname>] The path of the specifications to push.
|
|
187
185
|
#
|
|
188
|
-
|
|
189
186
|
def podspec_files
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
else
|
|
195
|
-
#files = Pathname.glob('*.podspec{,.json}')
|
|
196
|
-
files = Pathname.glob('**/*.podspec')
|
|
197
|
-
raise Informative, "Couldn't find any podspec files in current directory" if files.empty?
|
|
198
|
-
files
|
|
199
|
-
end
|
|
200
|
-
end
|
|
187
|
+
files = Pathname.glob('**/*.podspec')
|
|
188
|
+
raise Informative, "Couldn't find any podspec files in current directory" if files.empty?
|
|
189
|
+
files
|
|
190
|
+
end
|
|
201
191
|
|
|
202
192
|
#---------------------------------------------------------------------#
|
|
203
193
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cocoapods-sync-podspecs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- quangmv
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-06-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cocoapods
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 1.
|
|
19
|
+
version: 1.12.0
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 1.
|
|
26
|
+
version: 1.12.0
|
|
27
27
|
description: Push new specifications to a spec-repo without lint validation
|
|
28
28
|
email:
|
|
29
29
|
- quang.app@gmail.com
|
|
@@ -54,7 +54,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
54
54
|
- !ruby/object:Gem::Version
|
|
55
55
|
version: '0'
|
|
56
56
|
requirements: []
|
|
57
|
-
rubygems_version: 3.0.3
|
|
57
|
+
rubygems_version: 3.0.3.1
|
|
58
58
|
signing_key:
|
|
59
59
|
specification_version: 4
|
|
60
60
|
summary: Push new specifications to a spec-repo
|