class GreenMidget::FeatureMethodNotImplemented
Public Class Methods
new(feature, method_name)
click to toggle source
Calls superclass method
# File lib/green_midget/errors/feature_method_not_implemented.rb, line 3 def initialize(feature, method_name) super <<-MSG Method #{method_name.inspect} not found. Either implement it or delete feature #{feature} from your features list. MSG end