yt 0.4.5 → 0.4.6
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/Gemfile.lock +1 -1
- data/HISTORY.md +1 -0
- data/README.md +1 -1
- data/lib/yt/models/resource.rb +1 -1
- data/lib/yt/version.rb +1 -1
- 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: 2a36e77de08761577a50b1c22ef3757d64980e20
|
|
4
|
+
data.tar.gz: 7ced9dacb0b1338f395d892340b7862b341917e1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f6073f4c97083b01d27361dd15eff89c78449ffeb439d73e77d7de6188d840668239a91ab0d8854c45a4b4b0e474172451fcdaf8b4c6f0363e08a49d66f63320
|
|
7
|
+
data.tar.gz: cf8985a9d6464f3fa606ec9192d7137eda6f1697ab4d707ead5b58de2eb01af7cdbbf97d7601adc6d9103ddeae3d75f41b44531e489d7b978b62299923d1eeea
|
data/Gemfile.lock
CHANGED
data/HISTORY.md
CHANGED
|
@@ -5,6 +5,7 @@ v0.4 - 2014/05/09
|
|
|
5
5
|
* New methods to handle annotations, details sets
|
|
6
6
|
* Supports also ActiveSupport 3 and Ruby 1.9.3 (not just AS4 + Ruby 2)
|
|
7
7
|
* Fix parsing annotation and timestamps longer than 1 hour
|
|
8
|
+
* Fix delegating tags from resources to snippets
|
|
8
9
|
|
|
9
10
|
v0.3.0 - 2014/04/16
|
|
10
11
|
--------------------
|
data/README.md
CHANGED
|
@@ -276,7 +276,7 @@ To install on your system, run
|
|
|
276
276
|
|
|
277
277
|
To use inside a bundled Ruby project, add this line to the Gemfile:
|
|
278
278
|
|
|
279
|
-
gem 'yt', '~> 0.4.
|
|
279
|
+
gem 'yt', '~> 0.4.6'
|
|
280
280
|
|
|
281
281
|
Since the gem follows [Semantic Versioning](http://semver.org),
|
|
282
282
|
indicating the full version in your Gemfile (~> *major*.*minor*.*patch*)
|
data/lib/yt/models/resource.rb
CHANGED
|
@@ -3,7 +3,7 @@ require 'yt/models/base'
|
|
|
3
3
|
module Yt
|
|
4
4
|
class Resource < Base
|
|
5
5
|
attr_reader :id, :auth
|
|
6
|
-
has_one :snippet, delegate: [:title, :description, :thumbnail_url, :published_at]
|
|
6
|
+
has_one :snippet, delegate: [:title, :description, :thumbnail_url, :published_at, :tags]
|
|
7
7
|
has_one :status, delegate: [:privacy_status, :public?, :private?, :unlisted?]
|
|
8
8
|
|
|
9
9
|
def initialize(options = {})
|
data/lib/yt/version.rb
CHANGED