class Puree::Model::Structure

A structure.

Public Instance Methods

data?() click to toggle source
# File lib/puree/model/structure.rb, line 8
def data?
  found = false
  instance_variables.each do |i|
    found = true if i
  end
  found
end