Sha256: bf98ee9d580ff8aa9ed29408b0035a08418d45708ced8a0678e2f43b1c02fe70
Contents?: true
Size: 528 Bytes
Versions: 10
Compression:
Stored size: 528 Bytes
Contents
#!/usr/local/quandl/ruby/bin/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' require 'commander/import' require 'commander/command/quandl_ext' include Quandl::Command
Version data entries
10 entries across 10 versions & 1 rubygems