Sha256: b466136673343cc00eafd46c02094c7b350af211e050f61c9fbf23d22bfc82ef
Contents?: true
Size: 408 Bytes
Versions: 3
Compression:
Stored size: 408 Bytes
Contents
#!/usr/bin/env ruby require 'trollop' root = File.expand_path('../../', __FILE__) lib = "#{root}/lib" $:.unshift lib unless $:.include?(lib) require 'dl' opts = Trollop::options do version "dl #{Dl::VERSION} (c) 2011 Mark Szymanski" banner <<-EOS dl is an extremely simplified version of wget/curl, written in Ruby. Usage: dl [options] <url> Where [options] are: EOS end Dl::download ARGV[0]
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
dl-0.1.0 | bin/dl |
dl-0.0.3 | bin/dl |
dl-0.0.2 | bin/dl |