Ratch  Ratch

[Validate]
Generated with Newfish 0.1.0

Ratch

require ‘rake/file_utils_ext‘

Constants

VERSION

TODO: Only here b/c of issue with Ruby 1.8.x.

Public Class Methods

const_missing(name) click to toggle source

Access to project metadata via constants.

    # File lib/ratch.rb, line 11
11:   def self.const_missing(name)
12:     metadata[name.to_s.downcase] || super(name)
13:   end
metadata() click to toggle source

Access to project metadata.

   # File lib/ratch.rb, line 3
3:   def self.metadata
4:     @metadata ||= (
5:       require 'yaml'
6:       YAML.load(File.dirname(__FILE__) + '/ratch.yml')
7:     )
8:   end

Disabled; run with --debug to generate this.