class Talentio::CLI

Public Instance Methods

remind_interview() click to toggle source
# File lib/talentio/cli.rb, line 7
def remind_interview
  interview = Notifier::Slack::Interview.new(Notifier::Slack.new)
  Talentio.candidates.each do |c|
    interview.notify(c)
  end
end
remind_result() click to toggle source
# File lib/talentio/cli.rb, line 15
def remind_result
  result = Notifier::Slack::SelectionResult.new(Notifier::Slack.new)
  Talentio.candidates.each do |c|
    result.notify(c)
  end
end