Sha256: 113fdca94173f114e9386804be4bc947069e76565399e73385d256c03d4b5b29

Contents?: true

Size: 291 Bytes

Versions: 1

Compression:

Stored size: 291 Bytes

Contents

#!/usr/bin/env ruby

begin
  require "pathname"
  bin_file = Pathname.new(__FILE__).realpath
  $:.unshift File.expand_path("../lib", bin_file)

  require "rviki/cli"
  cli = RViki::Cli1.new
  cli.execute(*ARGV)
rescue Interrupt
  `stty icanon echo`
  puts("\n !    Command cancelled.")
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rviki-0.0.2 bin/rviki1