Sha256: ee7af7dede62fc70e70962432832968dc0ef3d382c66b088164455e3f0236451

Contents?: true

Size: 361 Bytes

Versions: 3

Compression:

Stored size: 361 Bytes

Contents

require File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'fathom'))
class Fathom::ImportNode < Node
  
  attr_reader :imported_at
  
  def initialize(opts={})
    super(opts)
    @imported_at = Time.now
  end
  
end

if __FILE__ == $0
  include Fathom
  # TODO: Is there anything you want to do to run this file on its own?
  # ImportNode.new
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fathom-0.3.2 lib/fathom/import/import_node.rb
fathom-0.3.1 lib/fathom/import/import_node.rb
fathom-0.3.0 lib/fathom/import/import_node.rb