Class: FLGen::Arguments::LibraryFile

Inherits:
Base
  • Object
show all
Defined in:
lib/flgen/arguments.rb

Instance Attribute Summary collapse

Attributes inherited from Base

#tool, #type

Instance Method Summary collapse

Methods inherited from Base

#match_tool?

Constructor Details

#initialize(path) ⇒ LibraryFile

Returns a new instance of LibraryFile.



31
32
33
34
# File 'lib/flgen/arguments.rb', line 31

def initialize(path)
  super(:library_file, nil)
  @path = path
end

Instance Attribute Details

#pathObject (readonly)

Returns the value of attribute path.



36
37
38
# File 'lib/flgen/arguments.rb', line 36

def path
  @path
end