Sha256: b61e070ea8bfa254ffa33f58d0adc9d45b5eb874d9cce32af6e687abfad52c1d
Contents?: true
Size: 548 Bytes
Versions: 1
Compression:
Stored size: 548 Bytes
Contents
#!/usr/bin/ruby # -*- coding: utf-8 -*- # avoid conflicts with rvm ENV.delete 'GEM_HOME' ENV.delete 'GEM_PATH' # attempt to load rubygems begin require "rubygems" rescue LoadError end # resolve bin path, ignoring symlinks require "pathname" here = File.dirname(Pathname.new(__FILE__).realpath) # add locally installed gems to libpath gem_dir = File.expand_path("../vendor/gems", here) Dir["#{gem_dir}/**/lib"].each do |libdir| $:.unshift libdir end # start up the CLI require "td/command/runner" TreasureData::Command::Runner.new.run ARGV
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
td-0.10.75 | dist/resources/pkg/td |