class Trailblazer::Cell
Public Instance Methods
property(key)
click to toggle source
# File lib/caco.rb, line 93 def property(key) return nil if model.nil? return nil unless model.has_key?(key) and model.is_a?(Hash) return model[key] end