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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 62d6e0b714faaaf66ca8228f636b34e61976252749672e04a3a6aa0445b18709
4
- data.tar.gz: f585de6e9a7e972a89c87c98d73619798e66340d814fff06231992dfbce62e33
3
+ metadata.gz: c97d257d2ddac34f6116fd99c16d44d77f2db914d87ab4e9a3b60c4460281fc8
4
+ data.tar.gz: fead38dd215fc932fe50deb288ddc5db9e9a38077b6185017043ac878dd9b992
5
5
  SHA512:
6
- metadata.gz: 87552efe2b4e7332c9b5cfe88ea19ad1e404d4eee94ea3187f60d26e40dcd910b049f05e7246dd8a7cb210ce96658cc7703a3f9095e6ed0c49151ae9019a80a7
7
- data.tar.gz: 8b44845a7e0da71748ff781fd15de6eb17bbca24f8fa72b76029bc65341805436d2460b6df38b092322006a5e7b2075b40a04eaad06c63cd9dcef87a69fcdfa0
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/a99a88d28ad37a79dbf6/maintainability)](https://codeclimate.com/github/CocoaPods/cocoapods-downloader/maintainability)
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.
@@ -3,6 +3,6 @@ module Pod
3
3
  # @return [String] Downloader’s version, following
4
4
  # [semver](http://semver.org).
5
5
  #
6
- VERSION = '1.5.1'.freeze
6
+ VERSION = '1.6.0'.freeze
7
7
  end
8
8
  end
@@ -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
- private_class_method :commit_from_ls_remote
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.5.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: 2021-09-07 00:00:00.000000000 Z
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.2.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.