Sha256: 546522ac2de479f9357af28464777328660b34a97b1a1fc23295716cfa0b5e0f
Contents?: true
Size: 523 Bytes
Versions: 1
Compression:
Stored size: 523 Bytes
Contents
require 'rubygems' require 'curb' require 'hpricot' module Crags VERSION = '1.0.2' LIBPATH = ::File.expand_path(::File.dirname(__FILE__)) + ::File::SEPARATOR PATH = ::File.dirname(LIBPATH) + ::File::SEPARATOR def self.version VERSION end def self.libpath( *args ) args.empty? ? LIBPATH : ::File.join(LIBPATH, *args) end def self.path( *args ) args.empty? ? PATH : ::File.join(PATH, *args) end end require 'crags/fetch' require 'crags/proxy' require 'crags/searcher' require 'crags/runner'
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gotascii-crags-1.0.2 | lib/crags.rb |