Sha256: dc4c52586e4252ad49466ad2da939684432c76245b29dd1b32e50230d7b16902

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.3.2' 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.2 lib/rev.rb