Class: Card::Chunk::Abstract

Inherits:
Object
  • Object
show all
Defined in:
lib/card/chunk.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(match, content) ⇒ Abstract

Returns a new instance of Abstract.



86
87
88
89
90
91
92
# File 'lib/card/chunk.rb', line 86

def initialize match, content
  @text = match[0]
  @processed = nil
  @content = content
  interpret match, content
  self
end

Instance Attribute Details

#process_chunkObject (readonly)

Returns the value of attribute process_chunk.



65
66
67
# File 'lib/card/chunk.rb', line 65

def process_chunk
  @process_chunk
end

#textObject (readonly)

Returns the value of attribute text.



65
66
67
# File 'lib/card/chunk.rb', line 65

def text
  @text
end

Class Method Details

.context_ok?(_content, _chunk_start) ⇒ Boolean

Returns:

  • (Boolean)


77
78
79
# File 'lib/card/chunk.rb', line 77

def context_ok? _content, _chunk_start
  true
end

.full_match(content, prefix = nil) ⇒ Object

if the prefix regex matched check that chunk against the full regex



69
70
71
# File 'lib/card/chunk.rb', line 69

def full_match content, prefix=nil
  content.match full_re(prefix)
end

.full_re(_prefix) ⇒ Object



73
74
75
# File 'lib/card/chunk.rb', line 73

def full_re _prefix
  config[:full_re]
end

Instance Method Details

#as_json(_options = {}) ⇒ Object



115
116
117
118
# File 'lib/card/chunk.rb', line 115

def as_json _options={}
  @process_chunk || @processed ||
    "not rendered #{self.class}, #{card && card.name}"
end

#cardObject



103
104
105
# File 'lib/card/chunk.rb', line 103

def card
  @content.card
end

#formatObject



99
100
101
# File 'lib/card/chunk.rb', line 99

def format
  @content.format
end

#inspectObject



111
112
113
# File 'lib/card/chunk.rb', line 111

def inspect
  "<##{self.class}##{self}>"
end

#interpret(_match_string, _content, _params) ⇒ Object



94
95
96
97
# File 'lib/card/chunk.rb', line 94

def interpret _match_string, _content, _params
  Rails.logger.info 'no #interpret method found for chunk class: ' \
                    "#{self.class}"
end

#reference_codeObject



82
83
84
# File 'lib/card/chunk.rb', line 82

def reference_code
  'I'
end

#to_sObject



107
108
109
# File 'lib/card/chunk.rb', line 107

def to_s
  @process_chunk || @processed || @text
end