class ChannelInfo

Attributes

average[RW]
channel[RW]
total[RW]

Public Class Methods

new(channel) click to toggle source
# File lib/top_video.rb, line 10
def initialize(channel)
  @channel = channel
  @average = 0
  @total = 0
end