downthetube 1.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
data/downthetube.gemspec
CHANGED
@@ -1,18 +1,18 @@
|
|
1
1
|
specification = Gem::Specification.new do |spec|
|
2
2
|
# Descriptive and source information for this gem.
|
3
3
|
spec.name = "downthetube"
|
4
|
-
spec.version = "1.0"
|
4
|
+
spec.version = "1.0.1"
|
5
5
|
spec.description = "A library to make downloading playlists and videos from Youtube less nasty."
|
6
6
|
spec.summary = "Downloads playlists and videos from Youtube."
|
7
7
|
spec.author = "Mike Williamson"
|
8
8
|
spec.email = "blessedbyvirtuosity@gmail.com"
|
9
9
|
spec.homepage = "http://mikewilliamson.wordpress.com"
|
10
10
|
require 'rake'
|
11
|
-
spec.files = %w(README CHANGELOG.md Gemfile Gemfile.lock lib/downthetube.rb lib/youtube.rb lib/video.rb lib/play_list.rb downthetube.gemspec)
|
11
|
+
spec.files = %w(README CHANGELOG.md Gemfile Gemfile.lock lib/downthetube.rb lib/downthetube/youtube.rb lib/downthetube/video.rb lib/downthetube/play_list.rb downthetube.gemspec)
|
12
12
|
spec.has_rdoc = true
|
13
13
|
spec.add_dependency("gdata_19", ">= 1.0.0")
|
14
14
|
spec.extra_rdoc_files = ["README"]
|
15
|
-
spec.
|
15
|
+
spec.require_paths = ["lib"]
|
16
16
|
spec.test_files = ["spec"]
|
17
17
|
end
|
18
18
|
|
File without changes
|
File without changes
|
File without changes
|
data/lib/downthetube.rb
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
require 'youtube'
|
2
|
-
require 'play_list'
|
3
|
-
require 'video'
|
1
|
+
require 'downthetube/youtube'
|
2
|
+
require 'downthetube/play_list'
|
3
|
+
require 'downthetube/video'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: downthetube
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.0.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2011-
|
12
|
+
date: 2011-12-06 00:00:00.000000000Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: gdata_19
|
16
|
-
requirement: &
|
16
|
+
requirement: &17181520 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,7 +21,7 @@ dependencies:
|
|
21
21
|
version: 1.0.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *17181520
|
25
25
|
description: A library to make downloading playlists and videos from Youtube less
|
26
26
|
nasty.
|
27
27
|
email: blessedbyvirtuosity@gmail.com
|
@@ -35,16 +35,16 @@ files:
|
|
35
35
|
- Gemfile
|
36
36
|
- Gemfile.lock
|
37
37
|
- lib/downthetube.rb
|
38
|
-
- lib/youtube.rb
|
39
|
-
- lib/video.rb
|
40
|
-
- lib/play_list.rb
|
38
|
+
- lib/downthetube/youtube.rb
|
39
|
+
- lib/downthetube/video.rb
|
40
|
+
- lib/downthetube/play_list.rb
|
41
41
|
- downthetube.gemspec
|
42
42
|
homepage: http://mikewilliamson.wordpress.com
|
43
43
|
licenses: []
|
44
44
|
post_install_message:
|
45
45
|
rdoc_options: []
|
46
46
|
require_paths:
|
47
|
-
-
|
47
|
+
- lib
|
48
48
|
required_ruby_version: !ruby/object:Gem::Requirement
|
49
49
|
none: false
|
50
50
|
requirements:
|