class Fathom::Network

Public Class Methods

new(attrs={}) click to toggle source
# File lib/fathom/data/network.rb, line 20
def initialize(attrs={})
  @attributes = attrs
end

Public Instance Methods

each() { |variable| ... } click to toggle source

Instance Methods =

# File lib/fathom/data/network.rb, line 27
def each(&block)
  variables.each do |variable|
    yield variable
  end
end
Also aliased as: each_variable
each_variable(&block)
Alias for: each