yt-annotations 1.2.0 → 1.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7875c77bb6bee074784fa8a242bdd62a0031818b
4
- data.tar.gz: 532b0b7058945b0c1c315d177e0fe43cf1761d67
3
+ metadata.gz: 3d6e219509d1710624f81f0d6c7065e8239156bb
4
+ data.tar.gz: bbcd3afacd35add0e39d4b8323525e9e18f15bd8
5
5
  SHA512:
6
- metadata.gz: a5800a2006868e6b64933c8e5e7b3c1e95938e8306491db2ebaee9edff3dd304165f1101bbd8b407a6f24be160794bc6b608b0548849aeefc59d5529afe14473
7
- data.tar.gz: a2881dae38b61adf233c8978dacc2728302e73352166d6781804edfc577d1e86cadf482ca9e3cdb64408dda471521d9f7a19fff1d83a4431f6cff64671238f7c
6
+ metadata.gz: d61e77abba1c3d97381ac8f172e05506832cd88d43d89128abd562055045d887e75d319760101554cd7d96c259d2096366cac92cb07119cf1eff5871f72be554
7
+ data.tar.gz: f92d96fafcd07feaac6b22ea11bed61ce6fe36a86adead8e99b66b65900a1b2d44f50238dc26d5d2ec0d3904cb2010b411e168e8bc0f8426835cf47e792257d6
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
+ ## 1.2.1 - 2016.02.05
10
+
11
+ * [ENHANCEMENT] Update homepage on rubygems.org
12
+
9
13
  ## 1.2.0 - 2015.12.02
10
14
 
11
15
  * [ENHANCEMENT] Parse new 'simple' card type (which YouTube now uses instead of 'merch', 'fundraising', 'associated').
data/README.md CHANGED
@@ -3,13 +3,13 @@ A Ruby gem to fetch YouTube annotations
3
3
 
4
4
  Yt::Annotations is a Ruby library to fetch annotations and cards of YouTube videos.
5
5
 
6
- The **source code** is available on [GitHub](https://github.com/Fullscreen/yt-annotations) and the **documentation** on [RubyDoc](http://www.rubydoc.info/github/Fullscreen/yt-annotations/master/Elegant/Interface).
6
+ The **source code** is available on [GitHub](https://github.com/claudiob/yt-annotations) and the **documentation** on [RubyDoc](http://www.rubydoc.info/github/claudiob/yt-annotations/Yt/Annotations).
7
7
 
8
- [![Build Status](http://img.shields.io/travis/Fullscreen/yt-annotations/master.svg)](https://travis-ci.org/Fullscreen/yt-annotations)
9
- [![Coverage Status](http://img.shields.io/coveralls/Fullscreen/yt-annotations/master.svg)](https://coveralls.io/r/Fullscreen/yt-annotations)
10
- [![Dependency Status](http://img.shields.io/gemnasium/Fullscreen/yt-annotations.svg)](https://gemnasium.com/Fullscreen/yt-annotations)
11
- [![Code Climate](http://img.shields.io/codeclimate/github/Fullscreen/yt-annotations.svg)](https://codeclimate.com/github/Fullscreen/yt-annotations)
12
- [![Online docs](http://img.shields.io/badge/docs-✓-green.svg)](http://www.rubydoc.info/github/Fullscreen/yt-annotations/master/Elegant)
8
+ [![Build Status](http://img.shields.io/travis/claudiob/yt-annotations/master.svg)](https://travis-ci.org/claudiob/yt-annotations)
9
+ [![Coverage Status](http://img.shields.io/coveralls/claudiob/yt-annotations/master.svg)](https://coveralls.io/r/claudiob/yt-annotations)
10
+ [![Dependency Status](http://img.shields.io/gemnasium/claudiob/yt-annotations.svg)](https://gemnasium.com/claudiob/yt-annotations)
11
+ [![Code Climate](http://img.shields.io/codeclimate/github/claudiob/yt-annotations.svg)](https://codeclimate.com/github/claudiob/yt-annotations)
12
+ [![Online docs](http://img.shields.io/badge/docs-✓-green.svg)](http://www.rubydoc.info/gems/yt-annotations/Yt/Annotations)
13
13
  [![Gem Version](http://img.shields.io/gem/v/yt-annotations.svg)](http://rubygems.org/gems/yt-annotations)
14
14
 
15
15
  How to use
@@ -33,7 +33,7 @@ annotations.first.link
33
33
  How to install
34
34
  ==============
35
35
 
36
- Elegant requires **Ruby 2.0 or higher**.
36
+ Yt::Annotations requires **Ruby 2.0 or higher**.
37
37
 
38
38
  To include in your project, add `gem 'yt-annotations', ~> '1.0'` to the `Gemfile` file of your Ruby project.
39
39
 
@@ -1,5 +1,5 @@
1
1
  module Yt
2
2
  module Annotations
3
- VERSION = '1.2.0'
3
+ VERSION = '1.2.1'
4
4
  end
5
5
  end
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
12
12
  spec.summary = %q{Fetch annotations and cards from YouTube videos.}
13
13
  spec.description = %q{A Ruby library to retrieve every type of annotation from
14
14
  any YouTube video, including branding, featured content and info cards.}
15
- spec.homepage = 'https://github.com/fullscreen/yt-annotations'
15
+ spec.homepage = 'https://github.com/claudiob/yt-annotations'
16
16
  spec.license = 'MIT'
17
17
 
18
18
  spec.required_ruby_version = '>= 2.0'
@@ -27,6 +27,6 @@ Gem::Specification.new do |spec|
27
27
  spec.add_development_dependency 'bundler', '~> 1.7'
28
28
  spec.add_development_dependency 'rake', '~> 10.0'
29
29
  spec.add_development_dependency 'rspec', '~> 3.3'
30
- spec.add_development_dependency 'coveralls', '~> 0.8.2'
30
+ spec.add_development_dependency 'coveralls', '~> 0.8.10'
31
31
  spec.add_development_dependency 'pry-nav', '~> 0.2.4'
32
32
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yt-annotations
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - claudiob
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-12-03 00:00:00.000000000 Z
11
+ date: 2016-02-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -78,14 +78,14 @@ dependencies:
78
78
  requirements:
79
79
  - - "~>"
80
80
  - !ruby/object:Gem::Version
81
- version: 0.8.2
81
+ version: 0.8.10
82
82
  type: :development
83
83
  prerelease: false
84
84
  version_requirements: !ruby/object:Gem::Requirement
85
85
  requirements:
86
86
  - - "~>"
87
87
  - !ruby/object:Gem::Version
88
- version: 0.8.2
88
+ version: 0.8.10
89
89
  - !ruby/object:Gem::Dependency
90
90
  name: pry-nav
91
91
  requirement: !ruby/object:Gem::Requirement
@@ -131,7 +131,7 @@ files:
131
131
  - lib/yt/annotations/title.rb
132
132
  - lib/yt/annotations/version.rb
133
133
  - yt-annotations.gemspec
134
- homepage: https://github.com/fullscreen/yt-annotations
134
+ homepage: https://github.com/claudiob/yt-annotations
135
135
  licenses:
136
136
  - MIT
137
137
  metadata: {}
@@ -151,7 +151,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
151
151
  version: '0'
152
152
  requirements: []
153
153
  rubyforge_project:
154
- rubygems_version: 2.5.0
154
+ rubygems_version: 2.5.1
155
155
  signing_key:
156
156
  specification_version: 4
157
157
  summary: Fetch annotations and cards from YouTube videos.