module Rubimas

Constants

VERSION

Public Class Methods

method_missing(name, *args) click to toggle source
Calls superclass method
# File lib/rubimas.rb, line 15
def self.method_missing(name, *args)
  if Rubimas::Idol.valid?(name)
    Rubimas::Idol.find_by_name(name)
  else
    Rubimas::Idol.send(name, *args)
  end
rescue NoMethodError
  super
end
theaterdays!() click to toggle source
# File lib/rubimas.rb, line 11
def self.theaterdays!
  Rubimas::Idol.theaterdays!
end