Sha256: 816cd95196a6564ffa828e6875d68431c76fc294017cce5f48fa5472dd38b8a9
Contents?: true
Size: 558 Bytes
Versions: 14
Compression:
Stored size: 558 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
14 entries across 14 versions & 1 rubygems