Class ActionFlow::Event
In: lib/action_flow/event.rb
Parent: Object

Methods

name   new  

Public Class methods

Initializes the class instance

[Source]

# File lib/action_flow/event.rb, line 36
    def initialize(m_event_name)

      # The name of the event returned
      @event_name = m_event_name

    end

Public Instance methods

Returns this event name

[Source]

# File lib/action_flow/event.rb, line 46
    def name
      @event_name.to_s
    end

[Validate]