class Coauthor::CLI

Constants

COMMIT_DESCRIPTION
GIT_USER_DESCRIPTION
SETUP_DESCRIPTION

Public Instance Methods

commit() click to toggle source
# File lib/coauthor/cli.rb, line 17
def commit
  puts COMMIT_DESCRIPTION.colorize(:blue)
  Coauthor::Git::Commit.call
end
git_user() click to toggle source
# File lib/coauthor/cli.rb, line 25
def git_user
  puts GIT_USER_DESCRIPTION.colorize(:blue)
  Coauthor::Git::User.call
end
setup() click to toggle source
# File lib/coauthor/cli.rb, line 10
def setup
  puts SETUP_DESCRIPTION.colorize(:blue)
  Coauthor::Git::Template.call
end