viddl-rb 0.68 → 0.70
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.
- data/Gemfile.lock +24 -5
- data/README.md +110 -49
- data/Rakefile +18 -8
- data/TODO.txt +3 -0
- data/bin/helper/downloader.rb +25 -0
- data/bin/helper/driver.rb +47 -0
- data/bin/helper/parameter-parser.rb +67 -0
- data/bin/viddl-rb +39 -118
- data/helper/audio-helper.rb +49 -0
- data/helper/download-helper.rb +86 -81
- data/helper/plugin-helper.rb +60 -16
- data/helper/utility-helper.rb +16 -0
- data/lib/viddl-rb.rb +113 -0
- data/plugins/blip.rb +1 -1
- data/plugins/dailymotion.rb +44 -0
- data/plugins/metacafe.rb +4 -6
- data/plugins/soundcloud.rb +3 -2
- data/plugins/veoh.rb +39 -39
- data/plugins/vimeo.rb +5 -7
- data/plugins/youtube.rb +196 -197
- metadata +13 -5
metadata
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: viddl-rb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 135
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: "0.
|
8
|
+
- 70
|
9
|
+
version: "0.70"
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Marc Seeger
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2012-
|
17
|
+
date: 2012-09-07 00:00:00 +02:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
@@ -96,10 +96,17 @@ extensions: []
|
|
96
96
|
extra_rdoc_files: []
|
97
97
|
|
98
98
|
files:
|
99
|
+
- bin/helper/downloader.rb
|
100
|
+
- bin/helper/driver.rb
|
101
|
+
- bin/helper/parameter-parser.rb
|
99
102
|
- bin/viddl-rb
|
103
|
+
- lib/viddl-rb.rb
|
104
|
+
- helper/audio-helper.rb
|
100
105
|
- helper/download-helper.rb
|
101
106
|
- helper/plugin-helper.rb
|
107
|
+
- helper/utility-helper.rb
|
102
108
|
- plugins/blip.rb
|
109
|
+
- plugins/dailymotion.rb
|
103
110
|
- plugins/metacafe.rb
|
104
111
|
- plugins/soundcloud.rb
|
105
112
|
- plugins/veoh.rb
|
@@ -110,6 +117,7 @@ files:
|
|
110
117
|
- Gemfile.lock
|
111
118
|
- Rakefile
|
112
119
|
- README.md
|
120
|
+
- TODO.txt
|
113
121
|
has_rdoc: true
|
114
122
|
homepage: https://github.com/rb2k/viddl-rb
|
115
123
|
licenses: []
|
@@ -118,7 +126,7 @@ post_install_message:
|
|
118
126
|
rdoc_options: []
|
119
127
|
|
120
128
|
require_paths:
|
121
|
-
-
|
129
|
+
- lib
|
122
130
|
required_ruby_version: !ruby/object:Gem::Requirement
|
123
131
|
none: false
|
124
132
|
requirements:
|