Sha256: f6a68a1a214b9e7762b5d77fef3516f90b9c2b10916c121b9073777d91952815

Contents?: true

Size: 632 Bytes

Versions: 1

Compression:

Stored size: 632 Bytes

Contents

#--
# Copyright (C)2007 Tony Arcieri
# You can redistribute this under the terms of the Ruby license
# See file LICENSE for details
#++

# Pull in the OpenSSL extension if available
begin
  require 'openssl'
rescue LoadError
end

# Pull in iobuffer gem
require 'rubygems'
require 'iobuffer'

%w(
  /rev_ext /rev/loop /rev/meta /rev/io_watcher /rev/timer_watcher 
  /rev/async_watcher /rev/listener /rev/io /rev/dns_resolver 
  /rev/socket /rev/server /rev/http_client
).each do |file|
  require File.dirname(__FILE__) + file
end

module Rev
  Rev::VERSION = '0.2.3' unless defined? Rev::VERSION
  def self.version() VERSION end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rev-0.3.0 lib/rev.rb