Class: GitHub::Markup::CommandImplementation

Inherits:
Implementation show all
Defined in:
lib/github/markup/command_implementation.rb

Constant Summary collapse

DEFAULT_GITLAB_MARKUP_TIMEOUT =
'10'.freeze

Instance Attribute Summary collapse

Attributes inherited from Implementation

#regexp

Instance Method Summary collapse

Methods inherited from Implementation

#load, #match?

Constructor Details

#initialize(regexp, command, name, &block) ⇒ CommandImplementation

Returns a new instance of CommandImplementation.



15
16
17
18
19
20
# File 'lib/github/markup/command_implementation.rb', line 15

def initialize(regexp, command, name, &block)
  super regexp
  @command = command.to_s
  @block = block
  @name = name
end

Instance Attribute Details

#blockObject (readonly)

Returns the value of attribute block.



13
14
15
# File 'lib/github/markup/command_implementation.rb', line 13

def block
  @block
end

#commandObject (readonly)

Returns the value of attribute command.



13
14
15
# File 'lib/github/markup/command_implementation.rb', line 13

def command
  @command
end

#nameObject (readonly)

Returns the value of attribute name.



13
14
15
# File 'lib/github/markup/command_implementation.rb', line 13

def name
  @name
end

Instance Method Details

#render(content) ⇒ Object



22
23
24
25
26
# File 'lib/github/markup/command_implementation.rb', line 22

def render(content)
  rendered = execute(command, content)
  rendered = rendered.to_s.empty? ? content : rendered
  call_block(rendered, content)
end