cdnget 0.2.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGES.md +34 -0
- data/README.md +6 -4
- data/Rakefile +1 -1
- data/bin/cdnget +390 -120
- data/cdnget.gemspec +5 -5
- data/lib/cdnget.rb +390 -120
- data/test/cdnget_test.rb +665 -113
- metadata +8 -8
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cdnget
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- makoto kuwata
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-10-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: minitest
|
@@ -30,15 +30,15 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
33
|
+
version: '0.3'
|
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
|
-
version: '
|
41
|
-
description: Utility to download files from CDNJS, jsDelivr or Google.
|
40
|
+
version: '0.3'
|
41
|
+
description: Utility to download files from CDNJS, jsDelivr, UNPKG or Google.
|
42
42
|
email:
|
43
43
|
- kwa@kuwata-lab.com
|
44
44
|
executables:
|
@@ -54,7 +54,7 @@ files:
|
|
54
54
|
- cdnget.gemspec
|
55
55
|
- lib/cdnget.rb
|
56
56
|
- test/cdnget_test.rb
|
57
|
-
homepage: https://github.com/kwatch/cdnget
|
57
|
+
homepage: https://github.com/kwatch/cdnget/tree/ruby-release
|
58
58
|
licenses:
|
59
59
|
- MIT
|
60
60
|
metadata: {}
|
@@ -74,8 +74,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
76
|
rubyforge_project:
|
77
|
-
rubygems_version: 2.5.
|
77
|
+
rubygems_version: 2.5.2.3
|
78
78
|
signing_key:
|
79
79
|
specification_version: 4
|
80
|
-
summary: Utility to download files from CDNJS, jsDelivr or Google.
|
80
|
+
summary: Utility to download files from CDNJS, jsDelivr, UNPKG or Google.
|
81
81
|
test_files: []
|