cocoapods-art 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 5a57ec3a1f2bfe311aef6d7d2ca1537a326b4b3a
4
- data.tar.gz: 1c3c40007939b2d37af8c309460213a702bd32f4
2
+ SHA256:
3
+ metadata.gz: 21dfb8588934b56b601b98d2844b9972059e2afd0352c060bb2a36b8637725c6
4
+ data.tar.gz: 9182fea89ab38495819b9e2fc673ec4407ce000b362067a1aee1082ec682e339
5
5
  SHA512:
6
- metadata.gz: e1b189c95eeecc33a00b769790a9574d4d606c7003816c2846b824d390ece83626be84e0900b3336a1a580eb73e8bc964b4dafcc1cde713d4ad57df6d8d13197
7
- data.tar.gz: 23a95dc96bb0770e854b20ddd189e5a2900e8c53ee3c29d3d6eaa29af76d11525aa824d3708c2f9f03d2d5c5a66511956c3a3c4a397da34c3d2c366bc00c6cc8
6
+ metadata.gz: 46949174ab4c2a9d418f21a326164928d5137c0ccb1cc93de6c7c2a6a6a5f8d6ac939fad93da5a24eeb446e818ea26df710a481d3b57f11b7810fd1c0bebc822
7
+ data.tar.gz: 773d23056bf73ef279d43824a8338f8ca592a30c96c8db7570d4f5d5e4978383f51937c2a3246a5e36e910ab07e7df39a0a8ee5612be40d1272286092a401ef4
@@ -23,5 +23,9 @@ module Pod
23
23
  File.read("#{repo}/.artpodrc") if File.exist?("#{dir}/.artpodrc")
24
24
  end
25
25
  end
26
+
27
+ def git?
28
+ false
29
+ end
26
30
  end
27
31
  end
@@ -2,5 +2,5 @@
2
2
  # The namespace of the CocoaPods Artifactory plugin.
3
3
  #
4
4
  module CocoaPodsArt
5
- VERSION = '1.0.0'
5
+ VERSION = '1.0.1'
6
6
  end
@@ -51,7 +51,7 @@ module Pod
51
51
  alias_method :orig_should_flatten?, :should_flatten?
52
52
 
53
53
  def download_file(full_filename)
54
- curl! '-n', '-f', '-L', '-o', full_filename, url, '--create-dirs'
54
+ curl! '-f', '-L', '-o', full_filename, url, '--create-dirs', '--netrc-optional'
55
55
  end
56
56
 
57
57
  # Note that we disabled flattening here for the ENTIRE client to deal with
metadata CHANGED
@@ -1,41 +1,41 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocoapods-art
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dan Feldman
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-03-13 00:00:00.000000000 Z
11
+ date: 2018-04-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: '1.3'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ~>
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '1.3'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ~>
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
33
  version: '0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ~>
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  description: Enables you to use Artifactory as your spec repo, as well as a repository
@@ -46,22 +46,22 @@ executables: []
46
46
  extensions: []
47
47
  extra_rdoc_files: []
48
48
  files:
49
+ - Gemfile
50
+ - LICENSE
51
+ - README.md
52
+ - Rakefile
49
53
  - lib/art_source.rb
50
54
  - lib/cocoapods_art.rb
51
55
  - lib/cocoapods_plugin.rb
52
56
  - lib/pod/artifactory_repo.rb
57
+ - lib/pod/command/repo_art.rb
53
58
  - lib/pod/command/repo_art/add.rb
54
59
  - lib/pod/command/repo_art/lint.rb
55
60
  - lib/pod/command/repo_art/list.rb
56
61
  - lib/pod/command/repo_art/push.rb
57
62
  - lib/pod/command/repo_art/remove.rb
58
63
  - lib/pod/command/repo_art/update.rb
59
- - lib/pod/command/repo_art.rb
60
64
  - lib/util/repo_util.rb
61
- - Gemfile
62
- - LICENSE
63
- - Rakefile
64
- - README.md
65
65
  homepage: https://github.com/JFrogDev/cocoapods-art
66
66
  licenses:
67
67
  - Apache-2.0
@@ -72,17 +72,17 @@ require_paths:
72
72
  - lib
73
73
  required_ruby_version: !ruby/object:Gem::Requirement
74
74
  requirements:
75
- - - '>='
75
+ - - ">="
76
76
  - !ruby/object:Gem::Version
77
77
  version: '0'
78
78
  required_rubygems_version: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - '>='
80
+ - - ">="
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
83
  requirements: []
84
84
  rubyforge_project:
85
- rubygems_version: 2.0.14
85
+ rubygems_version: 2.7.6
86
86
  signing_key:
87
87
  specification_version: 4
88
88
  summary: Artifactory support for CocoaPods