class Hyrb::Commands::Hipchat

Public Instance Methods

archive_old_rooms() click to toggle source
# File lib/hyrb/commands/hipchat.rb, line 15
def archive_old_rooms
  pipeline(Hyrb::Tasks::Hipchat::ArchiveOldRooms)
end
create_room(project_name = nil) click to toggle source
# File lib/hyrb/commands/hipchat.rb, line 10
def create_room(project_name = nil)
  pipeline(Hyrb::Tasks::Hipchat::CreateRoom, {project_name: project_name})
end
show_rooms() click to toggle source
# File lib/hyrb/commands/hipchat.rb, line 5
def show_rooms
  pipeline(Hyrb::Tasks::Hipchat::ShowRooms)
end