Class: Expressir::Express::ExpressRemarksDecorator
- Inherits:
-
Object
- Object
- Expressir::Express::ExpressRemarksDecorator
- Defined in:
- lib/expressir/express/express_remarks_decorator.rb
Constant Summary collapse
- RELATIVE_PREFIX_MACRO_REGEXP =
/^(link|image|video|audio|include)(:+)?(?![^\/:]+:\/\/|[A-Z]:\/|\/)([^:\[]+)(\[.*\])?$/.freeze
Instance Attribute Summary collapse
-
#options ⇒ Object
readonly
Returns the value of attribute options.
-
#remark ⇒ Object
readonly
Returns the value of attribute remark.
Class Method Summary collapse
Instance Method Summary collapse
- #call ⇒ Object
-
#initialize(remark, options) ⇒ ExpressRemarksDecorator
constructor
A new instance of ExpressRemarksDecorator.
Constructor Details
#initialize(remark, options) ⇒ ExpressRemarksDecorator
Returns a new instance of ExpressRemarksDecorator.
12 13 14 15 |
# File 'lib/expressir/express/express_remarks_decorator.rb', line 12 def initialize(remark, ) @remark = remark @options = end |
Instance Attribute Details
#options ⇒ Object (readonly)
Returns the value of attribute options.
6 7 8 |
# File 'lib/expressir/express/express_remarks_decorator.rb', line 6 def @options end |
#remark ⇒ Object (readonly)
Returns the value of attribute remark.
6 7 8 |
# File 'lib/expressir/express/express_remarks_decorator.rb', line 6 def remark @remark end |
Class Method Details
.call(remark, options) ⇒ Object
8 9 10 |
# File 'lib/expressir/express/express_remarks_decorator.rb', line 8 def self.call(remark, ) new(remark, ).call end |
Instance Method Details
#call ⇒ Object
17 18 19 20 21 22 23 24 |
# File 'lib/expressir/express/express_remarks_decorator.rb', line 17 def call result = remark if ["relative_path_prefix"] result = update_relative_paths(result, ["relative_path_prefix"]) end result end |