lib/streamly_ffi.rb in streamly_ffi-0.2.4 vs lib/streamly_ffi.rb in streamly_ffi-0.2.6
- old
+ new
@@ -3,13 +3,17 @@
# encoding: UTF-8
require 'streamly_ffi/version'
module StreamlyFFI
- autoload :Base, "streamly_ffi/base"
- autoload :Connection, "streamly_ffi/connection"
- autoload :Request, "streamly_ffi/request"
- autoload :PersistentRequest, "streamly_ffi/persistent_request"
+# autoload :Base, "streamly_ffi/base"
+require "streamly_ffi/base"
+require "streamly_ffi/connection"
+require "streamly_ffi/request"
+require "streamly_ffi/persistent_request"
+# autoload :Connection, "streamly_ffi/connection"
+# autoload :Request, "streamly_ffi/request"
+# autoload :PersistentRequest, "streamly_ffi/persistent_request"
class Error < StandardError; end
class UnsupportedProtocol < StandardError; end
class URLFormatError < StandardError; end
class HostResolutionError < StandardError; end