module BibTeX::Replaceable
The Replaceable
module provides methods that expose a Value
attribute and the ability to join or replace the contained BibTeX
symbols.
Attributes
Public Instance Methods
Source
# File lib/bibtex/replaceable.rb, line 33 def replace(*arguments) @value.replace(*arguments) self end
Source
# File lib/bibtex/replaceable.rb, line 29 def value=(value) @value = Value.new(value) end