yt 0.4.5 → 0.4.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: adb060424b5ef66ace1e77ddc760ec71bf568c07
4
- data.tar.gz: 62e91a94a4e1af527360b217824ac2bdad530c0a
3
+ metadata.gz: 2a36e77de08761577a50b1c22ef3757d64980e20
4
+ data.tar.gz: 7ced9dacb0b1338f395d892340b7862b341917e1
5
5
  SHA512:
6
- metadata.gz: 742c01386c4e89187899dfbf544c34c5f2a4c513001cb03efc46434f03f35c56aa0fb2ea587566aa5b8419112f7aeaec8ad62abe8641e99e07e931ffa4b3f44e
7
- data.tar.gz: d438cabdca24c141d39314b88d43453323a0c04a17afd0d6d1378e2f11ed8eb17f8841ae7d8d8597ad1654f7f783c093f4ff3d04a2b13e3370d49172b7e103c3
6
+ metadata.gz: f6073f4c97083b01d27361dd15eff89c78449ffeb439d73e77d7de6188d840668239a91ab0d8854c45a4b4b0e474172451fcdaf8b4c6f0363e08a49d66f63320
7
+ data.tar.gz: cf8985a9d6464f3fa606ec9192d7137eda6f1697ab4d707ead5b58de2eb01af7cdbbf97d7601adc6d9103ddeae3d75f41b44531e489d7b978b62299923d1eeea
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- yt (0.4.5)
4
+ yt (0.4.6)
5
5
  activesupport
6
6
 
7
7
  GEM
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.5'
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*)
@@ -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 = {})
@@ -1,3 +1,3 @@
1
1
  module Yt
2
- VERSION = '0.4.5'
2
+ VERSION = '0.4.6'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yt
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.5
4
+ version: 0.4.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Claudio Baccigalupo