Sha256: 56180fb2c0fbd86f430c5f0168672c76d3573ca9033a39e007e9aa5221eb754a

Contents?: true

Size: 369 Bytes

Versions: 4

Compression:

Stored size: 369 Bytes

Contents

require File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'fathom'))
class Fathom::ImportNode < Fathom::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

4 entries across 4 versions & 1 rubygems

Version Path
fathom-0.3.7 lib/fathom/import/import_node.rb
fathom-0.3.6 lib/fathom/import/import_node.rb
fathom-0.3.4 lib/fathom/import/import_node.rb
fathom-0.3.3 lib/fathom/import/import_node.rb