Module: SproutCore::RakeConstants

Included in:
Object
Defined in:
lib/sproutcore/buildfile.rb

Class Attribute Summary collapse

Instance Method Summary collapse

Class Attribute Details

.constant_listObject

Returns the value of attribute constant_list.



453
454
455
# File 'lib/sproutcore/buildfile.rb', line 453

def constant_list
  @constant_list
end

Instance Method Details

#const_missing(name) ⇒ Object



456
457
458
# File 'lib/sproutcore/buildfile.rb', line 456

def const_missing(name)
  ret = (RakeConstants.constant_list && RakeConstants.constant_list[name.to_s.downcase.to_sym]) || super
end