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.
-
#unknown_fingerprint ⇒ Object
readonly
Returns the value of attribute unknown_fingerprint.
Instance Method Summary collapse
- #color ⇒ Object
- #expandable? ⇒ Boolean
- #indexable? ⇒ Boolean
-
#initialize(status, description, lines = [], unknown_fingerprint = nil) ⇒ CryptoNotice
constructor
A new instance of CryptoNotice.
- #inlineable? ⇒ Boolean
- #patina_color ⇒ Object
- #quotable? ⇒ Boolean
- #viewable? ⇒ Boolean
Constructor Details
#initialize(status, description, lines = [], unknown_fingerprint = nil) ⇒ CryptoNotice
Returns a new instance of CryptoNotice.
297 298 299 300 301 302 |
# File 'lib/sup/message_chunks.rb', line 297 def initialize status, description, lines=[], unknown_fingerprint=nil @status = status @patina_text = description @lines = lines @unknown_fingerprint = unknown_fingerprint end |
Instance Attribute Details
#lines ⇒ Object (readonly)
Returns the value of attribute lines.
295 296 297 |
# File 'lib/sup/message_chunks.rb', line 295 def lines @lines end |
#patina_text ⇒ Object (readonly)
Returns the value of attribute patina_text.
295 296 297 |
# File 'lib/sup/message_chunks.rb', line 295 def patina_text @patina_text end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
295 296 297 |
# File 'lib/sup/message_chunks.rb', line 295 def status @status end |
#unknown_fingerprint ⇒ Object (readonly)
Returns the value of attribute unknown_fingerprint.
295 296 297 |
# File 'lib/sup/message_chunks.rb', line 295 def unknown_fingerprint @unknown_fingerprint end |
Instance Method Details
#color ⇒ Object
312 |
# File 'lib/sup/message_chunks.rb', line 312 def color; patina_color end |
#expandable? ⇒ Boolean
316 |
# File 'lib/sup/message_chunks.rb', line 316 def ; !@lines.empty? end |
#indexable? ⇒ Boolean
317 |
# File 'lib/sup/message_chunks.rb', line 317 def indexable?; false end |
#inlineable? ⇒ Boolean
314 |
# File 'lib/sup/message_chunks.rb', line 314 def inlineable?; false end |
#patina_color ⇒ Object
304 305 306 307 308 309 310 311 |
# File 'lib/sup/message_chunks.rb', line 304 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
315 |
# File 'lib/sup/message_chunks.rb', line 315 def quotable?; false end |
#viewable? ⇒ Boolean
318 |
# File 'lib/sup/message_chunks.rb', line 318 def viewable?; false end |