class Ruboty::Handlers::CanIBorrow
Public Instance Methods
borrow(message)
click to toggle source
# File lib/ruboty/handlers/can_i_borrow.rb, line 8 def borrow(message) Ruboty::CanIBorrow::Actions::Borrow.new(message).call end
borrowed_histories(message)
click to toggle source
# File lib/ruboty/handlers/can_i_borrow.rb, line 16 def borrowed_histories(message) Ruboty::CanIBorrow::Actions::BorrowedHistories.new(message).call end
return(message)
click to toggle source
# File lib/ruboty/handlers/can_i_borrow.rb, line 12 def return(message) Ruboty::CanIBorrow::Actions::Return.new(message).call end