yt-audit 0.5.3 → 0.5.4

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: 8fd105f50b9937aa82a07b8b070efd9efd1576a8
4
- data.tar.gz: 99cebaf5e5c67346c351edbc4dd8a23bdefb4dd0
3
+ metadata.gz: 79b432118e51d80989e1b332ba681fcf14702624
4
+ data.tar.gz: 163a6accdfb9e557ae67f318fc477af3f3f7002e
5
5
  SHA512:
6
- metadata.gz: 73b10d04171f4bd233612d8ee8f95203e7604c9b30768712abd32ac82fc4c8c58cf23e75fb8bb6487aefbca167c639391f69649add60ab8a731c7a44ded6cc59
7
- data.tar.gz: 2dccee5c1a95cd8069111d72b92b53c50e76bd7aca98bffc394b141543f324e773f29a9fb0ee5c4918134e7e7dd6a16259c8759548af45f260e49c5d65150fcb
6
+ metadata.gz: 27040269f96eb352f67dfa8f81d3b844d090025b9f25487d7ca09c9b4a8a44209e2dd227f274469f3bc5dba524be3248d14e5cc93cb2ee40fbd2f5d27dffa9a7
7
+ data.tar.gz: a786b1a442249b880bb4e93c9ad31bdd3dd181a73c2f09ab765baca7b301ba4173b0a17c9d5045abb5c60bb1ffb0af2ab54d7c89f8c9df168e7533bf715a5d2d
@@ -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.
@@ -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
@@ -1,5 +1,5 @@
1
1
  module Yt
2
2
  class Audit
3
- VERSION = '0.5.3'
3
+ VERSION = '0.5.4'
4
4
  end
5
5
  end
@@ -19,7 +19,7 @@ module Yt
19
19
  end
20
20
 
21
21
  def description
22
- 'The number of playlists with description'
22
+ 'The number of playlists with a description'
23
23
  end
24
24
 
25
25
  private
@@ -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 an in-video programming'
12
+ 'The number of videos with in-video programming'
13
13
  end
14
14
 
15
15
  private
@@ -10,7 +10,7 @@ module Yt
10
10
  end
11
11
 
12
12
  def description
13
- 'The number of videos with description has a link to its own channel'
13
+ 'The number of videos where the description has a link to its own channel'
14
14
  end
15
15
 
16
16
  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.3
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-20 00:00:00.000000000 Z
12
+ date: 2017-06-21 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: yt-core