Method: Licit::Command#run

Defined in:
lib/licit/command.rb

#runObject



4
5
6
7
8
9
10
11
# File 'lib/licit/command.rb', line 4

def run
  licenser = Licit::Licenser.new load_config
  if ARGV[0] == 'fix'
    fix licenser
  else
    check licenser
  end
end