class Chapter

Public Class Methods

from_auphonic(production) click to toggle source
# File lib/gst-kitchen/chapter.rb, line 8
def self.from_auphonic(production)
  chapters = production.meta
end
new(*args) click to toggle source
Calls superclass method
# File lib/gst-kitchen/chapter.rb, line 4
def initialize(*args)
  super
end

Public Instance Methods

<=>(other) click to toggle source
# File lib/gst-kitchen/chapter.rb, line 12
def <=>(other)
  self.start <=> other.start
end