yt-audit 0.5.3 → 0.5.4
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 +5 -0
- data/lib/yt/audit.rb +2 -2
- data/lib/yt/audit/version.rb +1 -1
- data/lib/yt/playlist_audit/description.rb +1 -1
- data/lib/yt/video_audit/invideo_programming.rb +2 -2
- data/lib/yt/video_audit/youtube_association.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: 79b432118e51d80989e1b332ba681fcf14702624
|
|
4
|
+
data.tar.gz: 163a6accdfb9e557ae67f318fc477af3f3f7002e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 27040269f96eb352f67dfa8f81d3b844d090025b9f25487d7ca09c9b4a8a44209e2dd227f274469f3bc5dba524be3248d14e5cc93cb2ee40fbd2f5d27dffa9a7
|
|
7
|
+
data.tar.gz: a786b1a442249b880bb4e93c9ad31bdd3dd181a73c2f09ab765baca7b301ba4173b0a17c9d5045abb5c60bb1ffb0af2ab54d7c89f8c9df168e7533bf715a5d2d
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,11 @@ 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
|
+
|
|
10
|
+
## 0.5.4 - 2017-06-20
|
|
11
|
+
|
|
12
|
+
* [ENHANCEMENT] Change order of audits.
|
|
13
|
+
|
|
9
14
|
## 0.5.3 - 2017-06-19
|
|
10
15
|
|
|
11
16
|
* [FEATURE] Add `VideoAudit::InvideoProgramming` to count videos with a branding annotation.
|
data/lib/yt/audit.rb
CHANGED
|
@@ -28,9 +28,7 @@ module Yt
|
|
|
28
28
|
[
|
|
29
29
|
Yt::VideoAudit::InfoCard.new(videos: @videos),
|
|
30
30
|
Yt::VideoAudit::BrandAnchoring.new(videos: @videos, brand: @brand),
|
|
31
|
-
Yt::VideoAudit::SubscribeAnnotation.new(videos: @videos),
|
|
32
31
|
Yt::VideoAudit::YoutubeAssociation.new(videos: @videos),
|
|
33
|
-
Yt::VideoAudit::EndCard.new(videos: @videos),
|
|
34
32
|
Yt::PlaylistAudit::Description.new(playlists: @playlists),
|
|
35
33
|
Yt::VideoAudit::EndScreen.new(videos: @videos),
|
|
36
34
|
Yt::VideoAudit::TagsLength.new(videos: @videos),
|
|
@@ -39,6 +37,8 @@ module Yt
|
|
|
39
37
|
Yt::VideoAudit::PlaylistEndScreen.new(videos: @videos),
|
|
40
38
|
Yt::VideoAudit::WebsiteEndScreen.new(videos: @videos),
|
|
41
39
|
Yt::VideoAudit::InvideoProgramming.new(videos: @videos),
|
|
40
|
+
Yt::VideoAudit::EndCard.new(videos: @videos),
|
|
41
|
+
Yt::VideoAudit::SubscribeAnnotation.new(videos: @videos),
|
|
42
42
|
]
|
|
43
43
|
end
|
|
44
44
|
end
|
data/lib/yt/audit/version.rb
CHANGED
|
@@ -2,14 +2,14 @@ require 'yt/video_audit/base'
|
|
|
2
2
|
|
|
3
3
|
module Yt
|
|
4
4
|
module VideoAudit
|
|
5
|
-
# Count how many subject videos have a branding.
|
|
5
|
+
# Count how many subject videos have a branding annotation.
|
|
6
6
|
class InvideoProgramming < Base
|
|
7
7
|
def title
|
|
8
8
|
'In-Video Programming'
|
|
9
9
|
end
|
|
10
10
|
|
|
11
11
|
def description
|
|
12
|
-
'The number of videos with
|
|
12
|
+
'The number of videos with in-video programming'
|
|
13
13
|
end
|
|
14
14
|
|
|
15
15
|
private
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: yt-audit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Claudio Baccigalupo
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: exe
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2017-06-
|
|
12
|
+
date: 2017-06-21 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: yt-core
|