# Yt::Audit Welcome! This is a Ruby library you can audit best practices of a YouTube channel. The **source code** is available on [GitHub](https://github.com/Fullscreen/yt-audit) and the **documentation** on [RubyDoc](http://www.rubydoc.info/github/fullscreen/yt-audit/master/Yt/Audit). [![Build Status](http://img.shields.io/travis/Fullscreen/yt-audit/master.svg)](https://travis-ci.org/Fullscreen/yt-audit) [![Coverage Status](http://img.shields.io/coveralls/Fullscreen/yt-audit/master.svg)](https://coveralls.io/r/Fullscreen/yt-audit) [![Dependency Status](http://img.shields.io/gemnasium/Fullscreen/yt-audit.svg)](https://gemnasium.com/Fullscreen/yt-audit) [![Code Climate](http://img.shields.io/codeclimate/github/Fullscreen/yt-audit.svg)](https://codeclimate.com/github/Fullscreen/yt-audit) [![Online docs](http://img.shields.io/badge/docs-✓-green.svg)](http://www.rubydoc.info/github/fullscreen/yt-audit/master/Yt/Audit) [![Gem Version](http://img.shields.io/gem/v/yt-audit.svg)](http://rubygems.org/gems/yt-audit) ## Development $ bin/setup $ YT_API_KEY="123456789012345678901234567890123456789" rake $ open coverage/index.html $ yardoc $ open doc/index.html ## Usage `run` method returns an array of objects. `Yt::Audit` should be initialized with a `Yt::Channel` object of [yt](https://github.com/Fullscreen/yt) as `channel`. It can also have videos, brand name, and playlists as optional, but by default it uses maximum 10 recent videos of channel as `videos`, channel title as `brand` and maximum 10 recent playlists as `playlists` keyword argument. ```ruby channel = Yt::Channel.new(id: 'UCPCk_8dtVyR1lLHMBEILW4g') audit = Yt::Audit.new(channel: channel) # => #, @videos=[...], @playlists=[...], @brand="budweiser"> audit.run # => [#, #, #, #, #, #] ``` You can call four available methods `total_count`, `valid_count`, `title`, and `description` from each `Yt::VideoAudit` or `Yt::PlaylistAudit` object. ```ruby audit_item = audit.run[0] # => # audit_item.total_count # => 10 audit_item.valid_count # => 10 audit_item.title # => "Info Cards" audit_item.description # => "The number of videos with an info card" ```