class Bogus::RespondsToEverything

Public Class Methods

new() click to toggle source
# File lib/bogus/fakes/responds_to_everything.rb, line 6
def initialize
  __shadow__
end

Public Instance Methods

method_missing(name, *args, &block) click to toggle source
# File lib/bogus/fakes/responds_to_everything.rb, line 14
def method_missing(name, *args, &block)
  __record__(name, *args, &block)
end
respond_to?(method) click to toggle source
# File lib/bogus/fakes/responds_to_everything.rb, line 10
def respond_to?(method)
  true
end