Class: SFRP::Low::Include
Instance Method Summary collapse
-
#initialize(str) ⇒ Include
constructor
A new instance of Include.
- #pretty_code ⇒ Object
Methods inherited from Element
Constructor Details
#initialize(str) ⇒ Include
Returns a new instance of Include.
117 118 119 |
# File 'lib/sfrp/low/element.rb', line 117 def initialize(str) @str = str end |
Instance Method Details
#pretty_code ⇒ Object
121 122 123 |
# File 'lib/sfrp/low/element.rb', line 121 def pretty_code "#include #{@str}" end |