Sha256: 7dc5d2bf95961a9692464cf3256476d6173eadb01541e0bb3e73ae77f858bb71

Contents?: true

Size: 856 Bytes

Versions: 20

Compression:

Stored size: 856 Bytes

Contents

#!/usr/bin/env ruby
# -*- coding: utf-8 -*-

require 'td-client'
$LOAD_PATH << File.expand_path('../../lib', __FILE__)

# disable the updater for the td gem
require 'td/updater'
TreasureData::Updater.disable(<<EOS

`td update` is only available from the Treasure Data Toolbelt.
You can download and install it from http://toolbelt.treasure-data.com.

It appers you are running the `td` gem. To update the gem to the latest
version, please run `gem update td`.

Please note that if you install `td` with `bundler` in a Gemfile/Gemspec
federated environment, you will need to upgrade the reference version for
`td` in the Gemfile/Gemspec for the updated `td` version to be used after
updating it.

EOS
)

# start up the CLI
require 'td/command/runner'
ev = TreasureData::Command::Runner.new.run ARGV
unless ev.nil?
  exit ev
else
  puts "No exit status"
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
td-0.17.1 bin/td
td-0.17.0 bin/td
td-0.16.10 bin/td
td-0.16.9 bin/td
td-0.16.8 bin/td
td-0.16.7 bin/td
td-0.16.6 bin/td
td-0.16.5 bin/td
td-0.16.4 bin/td
td-0.16.3 bin/td
td-0.16.1 bin/td
td-0.16.0 bin/td
td-0.15.9 bin/td
td-0.15.8 bin/td
td-0.15.7 bin/td
td-0.15.6 bin/td
td-0.15.5 bin/td
td-0.15.4 bin/td
td-0.15.3 bin/td
td-0.15.2 bin/td