Class: SlackRubyBot::MVC::View::Base

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Includes:
ActiveSupport::Callbacks
Defined in:
lib/slack-ruby-bot/mvc/view/base.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#clientObject (readonly)

Returns the value of attribute client.



16
17
18
# File 'lib/slack-ruby-bot/mvc/view/base.rb', line 16

def client
  @client
end

#dataObject (readonly)

Returns the value of attribute data.



16
17
18
# File 'lib/slack-ruby-bot/mvc/view/base.rb', line 16

def data
  @data
end

#matchObject (readonly)

Returns the value of attribute match.



16
17
18
# File 'lib/slack-ruby-bot/mvc/view/base.rb', line 16

def match
  @match
end

Class Method Details

.inherited(klass) ⇒ Object

:nodoc:



11
12
13
# File 'lib/slack-ruby-bot/mvc/view/base.rb', line 11

def inherited(klass) # :nodoc:
  super
end

Instance Method Details

#use_args(client, data, match) ⇒ Object

Hand off the latest updated objects to the model and view and update our client, data, and match accessors.



22
23
24
25
26
# File 'lib/slack-ruby-bot/mvc/view/base.rb', line 22

def use_args(client, data, match)
  @client = client
  @data = data
  @match = match
end