module Quickdraw

Constants

NOOPParser
PERMIT_LOWER_LIMIT
TIMER_RESET
VERSION

Public Class Methods

config() click to toggle source
# File lib/quickdraw.rb, line 11
def self.config
        @config ||= if File.exist? 'config.yml'
                            config = YAML.load(File.read('config.yml'))
                            config
                          else
                                  puts "config.yml does not exist!"
                                  {}
                          end
end
getwd() click to toggle source
# File lib/quickdraw.rb, line 21
def self.getwd
        FilePath.getwd
end
src_dir() click to toggle source
# File lib/quickdraw.rb, line 29
def self.src_dir
        FilePath.getwd / 'src'
end
theme_dir() click to toggle source
# File lib/quickdraw.rb, line 25
def self.theme_dir
        FilePath.getwd / 'theme'
end