Class: Spud::BuildTools::BuildRule
- Inherits:
-
Object
- Object
- Spud::BuildTools::BuildRule
show all
- Defined in:
- lib/build_tools/build_rule.rb
Instance Method Summary
collapse
Instance Method Details
#filename ⇒ Object
8
9
10
|
# File 'lib/build_tools/build_rule.rb', line 8
def filename
raise NotImplementedError
end
|
#invoke(*args, **kwargs) ⇒ Object
4
5
6
|
# File 'lib/build_tools/build_rule.rb', line 4
def invoke(*args, **kwargs)
raise NotImplementedError
end
|
#keyword_params ⇒ Object
16
17
18
|
# File 'lib/build_tools/build_rule.rb', line 16
def keyword_params
[]
end
|
#positional_params ⇒ Object
12
13
14
|
# File 'lib/build_tools/build_rule.rb', line 12
def positional_params
[]
end
|