class Spectro::Exception::UndefinedMethodDefinition

Attributes

file_path[RW]
method_name[RW]

Public Class Methods

new(file_path, method_name) click to toggle source
# File lib/spectro/exception/undefined_method_definition.rb, line 9
def initialize file_path, method_name
  self.file_path = file_path
  self.method_name = method_name
end

Public Instance Methods

to_s() click to toggle source
# File lib/spectro/exception/undefined_method_definition.rb, line 14
def to_s
  "[##{self.method_name}] has not been defiend for \"#{self.file_path}\". Verify the specs at \"#{self.file_path}\" and check the `spectro compile` output for more detailed information."
end