Sha256: ab0cfd2c0805043ac04c4d011a1f8b59bd82155ab2711e1d700c18f258a65613
Contents?: true
Size: 527 Bytes
Versions: 1
Compression:
Stored size: 527 Bytes
Contents
#!/usr/bin/env ruby # rex.rb # yesmar@speakeasy.net module REX REX::NAME = 'rex' REX::VERSION = '0.0.4' REX::COPYRIGHT = 'Copyright (c) 2008 Ramsey Dow' def self.copyright() REX::COPYRIGHT end def self.version() REX::VERSION end def self.libdir() File.expand_path(__FILE__).gsub(%r/\.rb$/, '') end end $LOAD_PATH.unshift(File.dirname(__FILE__)+'/rex') require 'array' require 'kernel' require 'numeric' require 'string' require 'symbol' raise RuntimeError, 'This library is for require only' if $0 == __FILE__
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rex-0.0.4 | lib/rex.rb |