Sha256: 1f2a0218350d91e3f45ba033b9d60a8d450aaa65fd73ea7e4efd10bd16f12411

Contents?: true

Size: 329 Bytes

Versions: 2

Compression:

Stored size: 329 Bytes

Contents

#!/usr/bin/env ruby
require 'vircs'

module Vircs

end


config_reader = Vircs::ConfigurationReader.new
instance      = Vircs::Virc.new config_reader.configuration_path
if ARGV.size > 0
  begin
    command  = ARGV.shift
    instance.send(command, ARGV)
  rescue Exception => e
    puts e.message
  end
else
  instance.usage
end

Version data entries

2 entries across 1 versions & 1 rubygems

Version Path
vircs-1.0.2 bin/vircs
vircs-1.0.2 vircs