Class: Footnotes::Notes::QuerySubscriberNotifactionEvent
- Inherits:
-
Object
- Object
- Footnotes::Notes::QuerySubscriberNotifactionEvent
- Defined in:
- lib/rails-footnotes/notes/queries_note.rb
Instance Attribute Summary collapse
-
#event ⇒ Object
readonly
Returns the value of attribute event.
-
#query ⇒ Object
readonly
Returns the value of attribute query.
-
#trace ⇒ Object
readonly
Returns the value of attribute trace.
Instance Method Summary collapse
-
#initialize(event, ctrace) ⇒ QuerySubscriberNotifactionEvent
constructor
A new instance of QuerySubscriberNotifactionEvent.
- #type ⇒ Object
Constructor Details
#initialize(event, ctrace) ⇒ QuerySubscriberNotifactionEvent
Returns a new instance of QuerySubscriberNotifactionEvent.
89 90 91 |
# File 'lib/rails-footnotes/notes/queries_note.rb', line 89 def initialize(event, ctrace) @event, @ctrace, @query = event, ctrace, event.payload[:sql] end |
Instance Attribute Details
#event ⇒ Object (readonly)
Returns the value of attribute event.
86 87 88 |
# File 'lib/rails-footnotes/notes/queries_note.rb', line 86 def event @event end |
#query ⇒ Object (readonly)
Returns the value of attribute query.
86 87 88 |
# File 'lib/rails-footnotes/notes/queries_note.rb', line 86 def query @query end |
#trace ⇒ Object (readonly)
Returns the value of attribute trace.
86 87 88 |
# File 'lib/rails-footnotes/notes/queries_note.rb', line 86 def trace @trace end |
Instance Method Details
#type ⇒ Object
97 98 99 |
# File 'lib/rails-footnotes/notes/queries_note.rb', line 97 def type @type ||= self.query.match(/^(\s*)(select|insert|update|delete|alter)\b/im) || 'Unknown' end |