Module: HDL
- Defined in:
- lib/hdl/base.rb
Defined Under Namespace
Classes: Chip, Dependency, Loader, Parser, SchemaChip, TableChip
Class Method Summary
collapse
Class Method Details
.load(name) ⇒ Object
12
13
14
|
# File 'lib/hdl/base.rb', line 12
def load(name)
Loader.load(name, :force => true)
end
|
.parse(name, definition) ⇒ Object
16
17
18
19
20
21
|
# File 'lib/hdl/base.rb', line 16
def parse(name, definition)
Loader.load(name,
:force => true,
:definition => definition
)
end
|
.path ⇒ Object
8
9
10
|
# File 'lib/hdl/base.rb', line 8
def path
Loader.path
end
|
.version ⇒ Object
4
5
6
|
# File 'lib/hdl/base.rb', line 4
def version
"1.0.3"
end
|