Sha256: c6d4703985a56264f4b9e246f8ef43b68e1e50860b4dbc3025a4055b38323fc6
Contents?: true
Size: 523 Bytes
Versions: 1
Compression:
Stored size: 523 Bytes
Contents
require 'rubygems' require 'curb' require 'hpricot' module Crags VERSION = '1.2.0' 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.2.0 | lib/crags.rb |