class SlackRubyBot::MVC::View::Base

Attributes

client[R]
data[R]
match[R]

Public Instance Methods

use_args(client, data, match) click to toggle source

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

# File lib/slack-ruby-bot/mvc/view/base.rb, line 22
def use_args(client, data, match)
  @client = client
  @data = data
  @match = match
end