Sha256: 400c36c13b3dba640f460cddbac474c49d7c2d759234dae370b6e1f2ebad87da

Contents?: true

Size: 559 Bytes

Versions: 1

Compression:

Stored size: 559 Bytes

Contents

#!/usr/bin/env ruby
# encoding: UTF-8

require "pathname"
bin_file = Pathname.new(__FILE__).realpath

# vendored gems path
gem_dir = File.expand_path("../../vendor/gems", bin_file)
# vendored gems?
if Dir.exists?(gem_dir)
  Dir["#{gem_dir}/**/lib"].each do |libdir|
    $:.unshift libdir
  end
else
  require 'rubygems'
end

# add self to libpath
$:.unshift File.expand_path("../../lib", bin_file)

require 'quandl/command/compatibility_check'
require 'quandl/command'
require 'commander/import'
require 'commander/command/quandl_ext'

include Quandl::Command

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
quandl-0.2.22 bin/quandl