class ReplacerBot::CLI

Public Instance Methods

dry_run() click to toggle source
# File lib/replacer_bot/cli.rb, line 18
def dry_run
  r = Replacer.new
  r.tweet dry_run: true, chatty: true
end
tweet() click to toggle source
# File lib/replacer_bot/cli.rb, line 12
def tweet
  r = Replacer.new
  r.tweet chatty: true
end
version() click to toggle source
# File lib/replacer_bot/cli.rb, line 6
def version
  puts "replacer version #{VERSION}"
end