yt-annotations 1.2.0 → 1.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +7 -7
- data/lib/yt/annotations/version.rb +1 -1
- data/yt-annotations.gemspec +2 -2
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3d6e219509d1710624f81f0d6c7065e8239156bb
|
4
|
+
data.tar.gz: bbcd3afacd35add0e39d4b8323525e9e18f15bd8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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/
|
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/
|
9
|
-
[![Coverage Status](http://img.shields.io/coveralls/
|
10
|
-
[![Dependency Status](http://img.shields.io/gemnasium/
|
11
|
-
[![Code Climate](http://img.shields.io/codeclimate/github/
|
12
|
-
[![Online docs](http://img.shields.io/badge/docs-✓-green.svg)](http://www.rubydoc.info/
|
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
|
-
|
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
|
|
data/yt-annotations.gemspec
CHANGED
@@ -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/
|
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.
|
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.
|
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:
|
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.
|
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.
|
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/
|
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.
|
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.
|