class Fanli::Base

Base class to inherit

Public Class Methods

inherited(sub) click to toggle source
# File lib/fanli/base.rb, line 4
def self.inherited(sub)
  sub.extend(ClassMethods)
end
new(*args) click to toggle source
# File lib/fanli/base.rb, line 8
def initialize(*args)
  @args = args
end

Public Instance Methods

perform() click to toggle source
# File lib/fanli/base.rb, line 12
def perform
  throw(:please_create_your_own_perform_method)
end