class NoMoss::RoleApi::AbstractProxy

Public Class Methods

new(object) click to toggle source
# File lib/no_moss/role_api.rb, line 30
def initialize(object)
  @object = object
end

Public Instance Methods

method_missing(name, *args, &b) click to toggle source
Calls superclass method
# File lib/no_moss/role_api.rb, line 34
def method_missing(name, *args, &b)
  super
rescue NoMethodError
  raise \
    NoMoss::NoRoleApiMethodError, \
    "#{name} method not included in the API of this role."
end