ytsongdw 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +7 -2
- data/VERSION +1 -1
- data/ytsongdw.gemspec +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3e618baf793c285348afc7d3696f98be2efbc672
|
|
4
|
+
data.tar.gz: 32998c3b12eb41f329cd2df7ea5c620c08c7eb90
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a59e4015d6f12dd4fba8b4457e006ce412f9c81bc80d943f316df42ebca64c0613965988781d2261c26695d9c6bcea494754bd0d2e8641933ffc2a92285c462c
|
|
7
|
+
data.tar.gz: 75d6e6661d23683dc3c5dcb111eb44b054d3696e01e6b552490028d094acb07aea7c2f12c4384bc8648c420a12d6520b92585a16a391db0ec1cd1276626226ca
|
data/README.md
CHANGED
|
@@ -24,7 +24,12 @@ Download multiple songs from a file containing several youtube urls, song names
|
|
|
24
24
|
By default all the .m4a files will be stored into the folder named "~/Music/" (will be created if it doesn't exist). You can change the folder name by passing a second argument to the command line as shown in the second example above. DO NOT FORGET the endind '/' on the folder name, or else it will be treated as a filename prefix instead of a folder path.
|
|
25
25
|
|
|
26
26
|
## Original Author
|
|
27
|
-
Based on https://github.com/ggouzi/Youtube-Download-Songs,
|
|
27
|
+
Based on https://github.com/ggouzi/Youtube-Download-Songs, but added the following changes:
|
|
28
|
+
- allow song download by name
|
|
29
|
+
- download in m4a format instead of mp3
|
|
30
|
+
- added playlists support
|
|
31
|
+
- made it into a rubygem
|
|
32
|
+
- added test coverage and improved code quality
|
|
28
33
|
|
|
29
34
|
## Licence
|
|
30
|
-
This project is licensed under the GNU GPL
|
|
35
|
+
This project is licensed under the GNU GPL 2.0. See LICENSE.txt for details.
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.4
|
data/ytsongdw.gemspec
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: ytsongdw 0.1.
|
|
5
|
+
# stub: ytsongdw 0.1.4 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "ytsongdw"
|
|
9
|
-
s.version = "0.1.
|
|
9
|
+
s.version = "0.1.4"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib"]
|