module Wawka
Constants
- VERSION
Public Class Methods
config()
click to toggle source
# File lib/wawka.rb, line 32 def self.config @config ||= YAML.load(open(config_path.to_s)) end
config_path()
click to toggle source
# File lib/wawka.rb, line 28 def self.config_path @config_path ||= Pathname.new(File.expand_path('~/.wawka.yaml')) end
root()
click to toggle source
# File lib/wawka.rb, line 20 def self.root @root ||= Pathname.new(File.dirname(File.absolute_path(__FILE__))) end
template_path()
click to toggle source
# File lib/wawka.rb, line 24 def self.template_path @template_path ||= Wawka.root.join('example/evidence.xls').to_s end