Class: Ruboty::Niftycloud::Actions::AccountUse

Inherits:
Base
  • Object
show all
Defined in:
lib/ruboty/niftycloud/actions/account_use.rb

Constant Summary

Constants inherited from Base

Base::NAMESPACE

Instance Attribute Summary

Attributes inherited from Base

#message

Instance Method Summary collapse

Methods inherited from Base

#accounts, #computing, #current_account, #current_region, #initialize, #rdb

Constructor Details

This class inherits a constructor from Ruboty::Niftycloud::Actions::Base

Instance Method Details

#callObject



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/ruboty/niftycloud/actions/account_use.rb', line 5

def call
  target = message[:target]

  if target.match(/^\d+$/)
     = accounts[target.to_i]
  else
     = accounts.find {|| [:name] == target }
  end

  if !
    return message.reply("Error: account not found")
  end 

  ([:name])
  message.reply("using: #{[:name]}")
end