cocoapods-downloader 1.5.1 → 1.6.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of cocoapods-downloader might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/README.markdown +5 -2
- data/lib/cocoapods-downloader/gem_version.rb +1 -1
- data/lib/cocoapods-downloader/git.rb +8 -1
- data/lib/cocoapods-downloader/mercurial.rb +13 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c97d257d2ddac34f6116fd99c16d44d77f2db914d87ab4e9a3b60c4460281fc8
|
4
|
+
data.tar.gz: fead38dd215fc932fe50deb288ddc5db9e9a38077b6185017043ac878dd9b992
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a4b95d247caec0895f112376d34a9815eea2ed3e3ecddf469074bfd952dd0b18fad8d49d6f2699c03c84cbde525c1e007d2ff5c1233dd20e113018ce6e20d98e
|
7
|
+
data.tar.gz: 35ea901675d445329421332622fd1093e96aa7e0ce8a322ff3cc40ffa936cf899439a5ddc128c55c1e91ca66ae2de7c8aaf64c75fe68d7657f9a8813b4bb9e9f
|
data/README.markdown
CHANGED
@@ -4,8 +4,7 @@ A small library for downloading files from remotes in a folder.
|
|
4
4
|
|
5
5
|
[![Build Status](https://img.shields.io/github/workflow/status/CocoaPods/CocoaPods-Downloader/Spec)](https://github.com/CocoaPods/cocoapods-downloader/actions)
|
6
6
|
[![Gem Version](https://img.shields.io/gem/v/cocoapods-downloader)](https://rubygems.org/gems/cocoapods-downloader)
|
7
|
-
[![Maintainability](https://api.codeclimate.com/v1/badges/
|
8
|
-
[![Test Coverage](https://api.codeclimate.com/v1/badges/a99a88d28ad37a79dbf6/test_coverage)](https://codeclimate.com/github/CocoaPods/cocoapods-downloader/test_coverage)
|
7
|
+
[![Maintainability](https://api.codeclimate.com/v1/badges/2253ffb0c2c98e4d1c71/maintainability)](https://codeclimate.com/github/CocoaPods/cocoapods-downloader/maintainability)
|
9
8
|
|
10
9
|
## Install
|
11
10
|
|
@@ -73,6 +72,10 @@ All CocoaPods development happens on GitHub, there is a repository for [CocoaPod
|
|
73
72
|
|
74
73
|
Follow [@CocoaPods](http://twitter.com/CocoaPods) to get up to date information about what's going on in the CocoaPods world.
|
75
74
|
|
75
|
+
## Development
|
76
|
+
|
77
|
+
You need to have `svn`, `bzr`, `hg` and `git` installed to run the specs. There are some specs which require `hdiutil` which will only run on macOS.
|
78
|
+
|
76
79
|
## License
|
77
80
|
|
78
81
|
This gem and CocoaPods are available under the MIT license.
|
@@ -21,6 +21,7 @@ module Pod
|
|
21
21
|
end
|
22
22
|
|
23
23
|
def self.preprocess_options(options)
|
24
|
+
validate_input options
|
24
25
|
return options unless options[:branch]
|
25
26
|
|
26
27
|
command = ['ls-remote',
|
@@ -57,7 +58,13 @@ module Pod
|
|
57
58
|
match[1] unless match.nil?
|
58
59
|
end
|
59
60
|
|
60
|
-
|
61
|
+
def self.validate_input(options)
|
62
|
+
input = [options[:git], options[:branch], options[:commit], options[:tag]]
|
63
|
+
invalid = input.compact.any? { |value| value.start_with?('--') || value.include?(' --') }
|
64
|
+
raise DownloaderError, "Provided unsafe input for git #{options}." if invalid
|
65
|
+
end
|
66
|
+
|
67
|
+
private_class_method :commit_from_ls_remote, :validate_input
|
61
68
|
|
62
69
|
private
|
63
70
|
|
@@ -18,6 +18,19 @@ module Pod
|
|
18
18
|
end
|
19
19
|
end
|
20
20
|
|
21
|
+
def self.preprocess_options(options)
|
22
|
+
validate_input options
|
23
|
+
options
|
24
|
+
end
|
25
|
+
|
26
|
+
def self.validate_input(options)
|
27
|
+
input = [options[:hg], options[:revision], options[:branch], options[:tag]].map(&:to_s)
|
28
|
+
invalid = input.compact.any? { |value| value.start_with?('--') || value.include?(' --') }
|
29
|
+
raise DownloaderError, "Provided unsafe input for hg #{options}." if invalid
|
30
|
+
end
|
31
|
+
|
32
|
+
private_class_method :validate_input
|
33
|
+
|
21
34
|
private
|
22
35
|
|
23
36
|
executable :hg
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cocoapods-downloader
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eloy Duran
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2022-03-22 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description:
|
15
15
|
email:
|
@@ -52,7 +52,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
52
52
|
- !ruby/object:Gem::Version
|
53
53
|
version: '0'
|
54
54
|
requirements: []
|
55
|
-
rubygems_version: 3.
|
55
|
+
rubygems_version: 3.1.6
|
56
56
|
signing_key:
|
57
57
|
specification_version: 3
|
58
58
|
summary: A small library for downloading files from remotes in a folder.
|