Sha256: a4bc180120a211032a5e93bcda8e537669c049cf5a1b30ba3576feab0cb2ed85
Contents?: true
Size: 544 Bytes
Versions: 5
Compression:
Stored size: 544 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("../../current/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("../../current/lib", bin_file) require 'quandl/command' require 'commander/import' require 'commander/command/quandl_ext' include Quandl::Command
Version data entries
5 entries across 5 versions & 1 rubygems