module Fanli::Base::ClassMethods

Class Methods

Public Instance Methods

for(*args) click to toggle source
# File lib/fanli/base.rb, line 18
def for(*args)
  with(*args)
end
to(*args) click to toggle source
# File lib/fanli/base.rb, line 22
def to(*args)
  with(*args)
end
with(*args) click to toggle source
# File lib/fanli/base.rb, line 26
def with(*args)
  obj = new(*args)
  obj.perform
end