Sha256: 5bf000d9d16e5d2b17848d0b572f30b5de5c55485dbb5bc330f10f0827f677cc

Contents?: true

Size: 393 Bytes

Versions: 4

Compression:

Stored size: 393 Bytes

Contents

#!/usr/bin/env ruby

lib = File.expand_path(File.dirname(__FILE__) + '/../lib')
$LOAD_PATH.unshift(lib) if File.directory?(lib) && !$LOAD_PATH.include?(lib)



args = ARGV.dup
ARGV.clear

require 'tane'
options = Tane::Parser.parse(args)

command = args.shift.strip rescue 'help'
command = 'help' if command == ''

klass = Tane::Commands.const_get command.capitalize
klass.fire(options, args)

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
tane-0.0.4 bin/tane
tane-0.0.3 bin/tane
tane-0.0.2 bin/tane
tane-0.0.1 bin/tane