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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/pod/command/push-tag.rb +4 -14
  3. metadata +5 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1337f865b561483f1065aa2eff928106bee7af7fec05155ed7b2d6232897b035
4
- data.tar.gz: 86a523efbc19297baf5b1b75ce366b6820a91c17d776e359e44c4ed934c9ce2e
3
+ metadata.gz: 5529898f04cfc14b416327df63f3c1350fd51df8476f64f58ae5e626cf9cb85e
4
+ data.tar.gz: e9d5449a285814055ec09fc071970369917e63e1eaab78df7e5ee8d2942d29b8
5
5
  SHA512:
6
- metadata.gz: 63a524e26e9c9526b73b1e69f731d680397d7bfedd0a487064271fd838cdbf41063b6f1ecb1522909ea646177cee837e3510f92da2cbd7559bac7ef89948c9e5
7
- data.tar.gz: 852545e13c2f4ed9956f75b7baffe02aa11054ef482e1624d1b8d75e341de1bd3970b6cfb5de035c6d78d8d3c52d4b99f8b8e46ef5253c883dc087b1de34acde
6
+ metadata.gz: d8ee5e80263b95c5f744fac1831262b748c408a8528d02bf1edc94ab8ca208d21cf644b7c39d71f85e7d480a21eaa09fe4fe6ed40e7924534f912f1880c7a33e
7
+ data.tar.gz: 996c6a9870059778a0092c80fee3b9217735bdfd1434ba89128ec4b2ad059cf303ecfd8dd6f698642bf8685c07b4431c8c368179c1afe19cfd2af7daa305cb70
@@ -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
- if @podspec
191
- path = Pathname(@podspec)
192
- raise Informative, "Couldn't find #{@podspec}" unless path.exist?
193
- [path]
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.3.1
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: 2022-05-27 00:00:00.000000000 Z
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.11.0
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.11.0
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