downthetube 0.0.7 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- data/downthetube.gemspec +1 -1
- data/lib/video.rb +1 -1
- metadata +3 -3
data/downthetube.gemspec
CHANGED
@@ -1,7 +1,7 @@
|
|
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 = "0.0.
|
4
|
+
spec.version = "0.0.8"
|
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"
|
data/lib/video.rb
CHANGED
@@ -86,7 +86,7 @@ module Youtube
|
|
86
86
|
populate_attrs unless @xml
|
87
87
|
h = {}
|
88
88
|
instance_variables.each do |var|
|
89
|
-
h[var.gsub('@', '').to_sym]= self.instance_variable_get(var.to_sym) unless %w( @client @xml ).include? var
|
89
|
+
h[var.gsub('@', '').to_sym]= self.instance_variable_get(var.to_sym).to_s unless %w( @client @xml ).include? var
|
90
90
|
end
|
91
91
|
h
|
92
92
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: downthetube
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 15
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 8
|
10
|
+
version: 0.0.8
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Mike Williamson
|