class Ecic::SourceFile

Attributes

path[RW]

Public Class Methods

new(library, path) click to toggle source
# File lib/ecic/source_file.rb, line 7
def initialize(library, path)
  @library = library
  @path = path
end

Public Instance Methods

to_s() click to toggle source
# File lib/ecic/source_file.rb, line 12
def to_s
  "#{path}"
end