download_to_cache

download_to_cache(dependency) Instance Public methods Given a name and requirement, downloads this gem into cache and returns the filename. Returns nil if the gem cannot be located.

_create_slave_object

_create_slave_object(keys={}) Instance Public methods

normalize_propname

normalize_propname(name) Instance Public methods

replace

ary.replace(other_ary) â ary Instance Public methods Replaces the contents of self with the contents of other_ary, truncating or expanding if necessary. a = [ "a", "b", "c", "d", "e" ] a.replace([ "x", "y", "z" ]) #=> ["x", "y", "z"] a #=> ["x", "y", "z"]

dataType=

dataType=(arg0) Instance Public methods VOID dataType the data type of the node

column_neededwidth

column_neededwidth(idx) Instance Public methods Alias for: column_needed_width

definition

definition() Instance Public methods The definition of this singleton class, class << MyClassName

-

-(other) Instance Public methods Subtracts another Duration or a Numeric from this Duration. Numeric values are treated as seconds.

warn

warn(message = nil, callstack = nil) Instance Public methods Outputs a deprecation warning to the output configured by ActiveSupport::Deprecation.behavior. ActiveSupport::Deprecation.warn('something broke!') # => "DEPRECATION WARNING: something broke! (called from your_code.rb:1)"

empty?

empty?() Instance Public methods Returns true if the collection is empty. If the collection has been loaded it is equivalent to collection.size.zero?. If the collection has not been loaded, it is equivalent to collection.exists?. If the collection has not already been loaded and you are going to fetch the records anyway it is better to check collection.length.zero?. class Person < ActiveRecord::Base has_many :pets end person.pets.count # => 1 person.pets.empty? # => fa