cocoapods-sync-podspecs 0.3.1 → 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/pod/command/push-tag.rb +4 -14
  3. metadata +8 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1337f865b561483f1065aa2eff928106bee7af7fec05155ed7b2d6232897b035
4
- data.tar.gz: 86a523efbc19297baf5b1b75ce366b6820a91c17d776e359e44c4ed934c9ce2e
3
+ metadata.gz: 5898ac1138d893a2964b9b07be6c0a770c57e1448299510abef638646428aa38
4
+ data.tar.gz: e6a555687cac876b7434e1dd549f69d6824891191f6e2075e671d129d223881d
5
5
  SHA512:
6
- metadata.gz: 63a524e26e9c9526b73b1e69f731d680397d7bfedd0a487064271fd838cdbf41063b6f1ecb1522909ea646177cee837e3510f92da2cbd7559bac7ef89948c9e5
7
- data.tar.gz: 852545e13c2f4ed9956f75b7baffe02aa11054ef482e1624d1b8d75e341de1bd3970b6cfb5de035c6d78d8d3c52d4b99f8b8e46ef5253c883dc087b1de34acde
6
+ metadata.gz: 884314b534175c498026ff93513ac7081feef19b110ecee7395c7c965b84f7290688b2892d8a8928ff24db370a15496cc3b9e697b8228edacbde9a17afa191df
7
+ data.tar.gz: 6293cc81dd344b550b11135ddfd9f5523a3868157ca78c21caac6210682a1631788a3c5463857ec6910651de71276c8c7fff8de430964d760a6fe3c9b1b25ddf
@@ -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.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - quangmv
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-05-27 00:00:00.000000000 Z
11
+ date: 2024-04-26 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'
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'
27
27
  description: Push new specifications to a spec-repo without lint validation
28
28
  email:
29
29
  - quang.app@gmail.com
@@ -39,7 +39,7 @@ homepage: https://github.com/quangmv
39
39
  licenses:
40
40
  - MIT
41
41
  metadata: {}
42
- post_install_message:
42
+ post_install_message:
43
43
  rdoc_options: []
44
44
  require_paths:
45
45
  - lib
@@ -54,8 +54,8 @@ 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
58
- signing_key:
57
+ rubygems_version: 3.5.9
58
+ signing_key:
59
59
  specification_version: 4
60
60
  summary: Push new specifications to a spec-repo
61
61
  test_files: []