Exception: Workling::ConfigurationError

Inherits:
WorklingError
  • Object
show all
Defined in:
lib/workling.rb

Instance Method Summary collapse

Constructor Details

#initializeConfigurationError

Returns a new instance of ConfigurationError.



31
32
33
34
35
# File 'lib/workling.rb', line 31

def initialize
  super File.exist?(Workling.path('config', 'starling.yml')) ? 
    "config/starling.yml has been depracated. rename your config file to config/workling.yml then try again!" :
    "config/workling.yml could not be loaded. check out README.markdown to see what this file should contain. "
end