class ShowEpisode

Information that uniquely identifies an episode of a show.

Attributes

episode[RW]
season[RW]

Public Class Methods

new() click to toggle source
# File plugins/shows/lib/showname_parse.rb, line 8
def initialize
  @season = nil
  @episode = nil
end

Public Instance Methods

to_s() click to toggle source
# File plugins/shows/lib/showname_parse.rb, line 16
def to_s
  "S#{season}E#{episode}"
end