class Hashie::Dash

def self.properties

properties on this Dash.
Get a String array of the currently defined
def self.properties
  properties = []
  ancestors.each do |elder|
    if elder.instance_variable_defined?("@properties")
      properties << elder.instance_variable_get("@properties")
    end
  end
  properties.flatten.map{|p| p.to_s}
end