class Inprovise::ScriptIndex::MissingScriptError

Public Class Methods

new(index_name, script_name) click to toggle source
# File lib/inprovise/script_index.rb, line 37
def initialize(index_name, script_name)
  @index_name = index_name
  @script_name = script_name
end

Public Instance Methods

message() click to toggle source
# File lib/inprovise/script_index.rb, line 42
def message
  "script #{@script_name} could not be found in the index #{@index_name}"
end