class Copernicium::UIComm

Communication object that will pass commands to backend modules also used in unit test to make sure command is being parsed ok rev - revision indicator (commit #, branch name, HEAD, etc.) repo - URL/path to a remote repository

Attributes

cmt_msg[RW]
command[RW]
files[RW]
opts[RW]
repo[RW]
rev[RW]

Public Class Methods

new(command: nil, files: nil, rev: nil, cmt_msg: nil, repo: nil, opts: nil) click to toggle source
# File lib/ui.rb, line 15
def initialize(command: nil, files: nil, rev: nil,
               cmt_msg: nil, repo: nil, opts: nil)
  @cmt_msg = cmt_msg
  @command = command
  @files = files
  @opts = opts
  @repo = repo
  @rev = rev
end