Class: Redwood::Chunk::CryptoNotice
Instance Attribute Summary collapse
-
#lines ⇒ Object
readonly
Returns the value of attribute lines.
-
#patina_text ⇒ Object
readonly
Returns the value of attribute patina_text.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
Instance Method Summary collapse
- #color ⇒ Object
- #expandable? ⇒ Boolean
-
#initialize(status, description, lines = []) ⇒ CryptoNotice
constructor
A new instance of CryptoNotice.
- #inlineable? ⇒ Boolean
- #patina_color ⇒ Object
- #quotable? ⇒ Boolean
- #viewable? ⇒ Boolean
Constructor Details
#initialize(status, description, lines = []) ⇒ CryptoNotice
Returns a new instance of CryptoNotice.
307 308 309 310 311 |
# File 'lib/sup/message_chunks.rb', line 307 def initialize status, description, lines=[] @status = status @patina_text = description @lines = lines end |
Instance Attribute Details
#lines ⇒ Object (readonly)
Returns the value of attribute lines.
305 306 307 |
# File 'lib/sup/message_chunks.rb', line 305 def lines @lines end |
#patina_text ⇒ Object (readonly)
Returns the value of attribute patina_text.
305 306 307 |
# File 'lib/sup/message_chunks.rb', line 305 def patina_text @patina_text end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
305 306 307 |
# File 'lib/sup/message_chunks.rb', line 305 def status @status end |
Instance Method Details
#color ⇒ Object
321 |
# File 'lib/sup/message_chunks.rb', line 321 def color; patina_color end |
#expandable? ⇒ Boolean
325 |
# File 'lib/sup/message_chunks.rb', line 325 def ; !@lines.empty? end |
#inlineable? ⇒ Boolean
323 |
# File 'lib/sup/message_chunks.rb', line 323 def inlineable?; false end |
#patina_color ⇒ Object
313 314 315 316 317 318 319 320 |
# File 'lib/sup/message_chunks.rb', line 313 def patina_color case status when :valid then :cryptosig_valid_color when :valid_untrusted then :cryptosig_valid_untrusted_color when :invalid then :cryptosig_invalid_color else :cryptosig_unknown_color end end |
#quotable? ⇒ Boolean
324 |
# File 'lib/sup/message_chunks.rb', line 324 def quotable?; false end |
#viewable? ⇒ Boolean
326 |
# File 'lib/sup/message_chunks.rb', line 326 def viewable?; false end |