class BasicObject

Public Instance Methods

__to_s__() click to toggle source
# File lib/shiritori/convert.rb, line 33
def __to_s__
  self
end
Also aliased as: to_s
eval(str) click to toggle source
# File lib/shiritori/convert.rb, line 41
def eval(str)
  ::Kernel.eval(str, __binding__)
end
respond_to?(name) click to toggle source
# File lib/shiritori/convert.rb, line 37
def respond_to?(name)
  [:==, :equal?, :!, :!=, :instance_eval, :instance_exec, :__send__, :__id__].include?(name)
end
to_s()
Alias for: __to_s__