cdnget 0.3.1 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGES.md +15 -0
- data/README.md +6 -4
- data/Rakefile +1 -1
- data/bin/cdnget +354 -90
- data/cdnget.gemspec +3 -3
- data/lib/cdnget.rb +354 -90
- data/test/cdnget_test.rb +634 -108
- metadata +9 -8
data/cdnget.gemspec
CHANGED
@@ -2,12 +2,12 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |o|
|
4
4
|
o.name = "cdnget"
|
5
|
-
o.version = '$Release: 0.
|
5
|
+
o.version = '$Release: 1.0.0 $'.split()[1]
|
6
6
|
o.authors = ["makoto kuwata"]
|
7
7
|
o.email = ["kwa@kuwata-lab.com"]
|
8
8
|
|
9
|
-
o.summary = "Utility to download files from CDNJS, jsDelivr or Google."
|
10
|
-
o.description = "Utility to download files from CDNJS, jsDelivr or Google."
|
9
|
+
o.summary = "Utility to download files from CDNJS, jsDelivr, UNPKG or Google."
|
10
|
+
o.description = "Utility to download files from CDNJS, jsDelivr, UNPKG or Google."
|
11
11
|
o.homepage = "https://github.com/kwatch/cdnget/tree/ruby-release"
|
12
12
|
o.license = "MIT"
|
13
13
|
|