yt 0.13.0 → 0.13.1
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/CHANGELOG.md +4 -0
- data/README.md +1 -1
- data/lib/yt/collections/videos.rb +3 -1
- data/lib/yt/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4fe56c0423dd32708ff76d6cd83822240083da24
|
|
4
|
+
data.tar.gz: 4476e45c37289f58c0591341eb10a7629c12d23b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2178bb4652a6d4f681ec37338d7d6ed25cefa6852e56fef7dd9b7add019331894e2187bc7637a7266a3bf5a75ee33c58de2b8d678a790267b21144ed908c9d39
|
|
7
|
+
data.tar.gz: 38d3b5b43deb2e5c409b2847689af5b7a4a67f8ca0179c1b6bb6942eed11beea75022be6381c32b55f861eaa07ce7855338c70066db4b30a739df06e86bf9576
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,10 @@ For more information about changelogs, check
|
|
|
6
6
|
[Keep a Changelog](http://keepachangelog.com) and
|
|
7
7
|
[Vandamme](http://tech-angels.github.io/vandamme).
|
|
8
8
|
|
|
9
|
+
## 0.13.1 - 2014-09-18
|
|
10
|
+
|
|
11
|
+
* [BUGFIX] Make list videos by id work for exactly 50 ids.
|
|
12
|
+
|
|
9
13
|
## 0.13.0 - 2014-09-11
|
|
10
14
|
|
|
11
15
|
**How to upgrade**
|
data/README.md
CHANGED
|
@@ -41,7 +41,7 @@ To install on your system, run
|
|
|
41
41
|
|
|
42
42
|
To use inside a bundled Ruby project, add this line to the Gemfile:
|
|
43
43
|
|
|
44
|
-
gem 'yt', '~> 0.13.
|
|
44
|
+
gem 'yt', '~> 0.13.1'
|
|
45
45
|
|
|
46
46
|
Since the gem follows [Semantic Versioning](http://semver.org),
|
|
47
47
|
indicating the full version in your Gemfile (~> *major*.*minor*.*patch*)
|
|
@@ -34,7 +34,9 @@ module Yt
|
|
|
34
34
|
end
|
|
35
35
|
|
|
36
36
|
def next_page
|
|
37
|
-
super.tap
|
|
37
|
+
super.tap do |items|
|
|
38
|
+
add_offset_to(items) if !use_list_endpoint? && @page_token.nil?
|
|
39
|
+
end
|
|
38
40
|
end
|
|
39
41
|
|
|
40
42
|
# According to http://stackoverflow.com/a/23256768 YouTube does not
|
data/lib/yt/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: yt
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.13.
|
|
4
|
+
version: 0.13.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Claudio Baccigalupo
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-09-
|
|
11
|
+
date: 2014-09-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|