Sha256: d841eb1fe060e51e260400a34aff2f82e35d8b9fabf5696b7df3d7adb6d8abf7
Contents?: true
Size: 488 Bytes
Versions: 4
Compression:
Stored size: 488 Bytes
Contents
require 'thread' require 'timeout' require 'logger' require "hot_tub/version" require "hot_tub/session" require "hot_tub/clients/client" require "hot_tub/clients/em_synchrony_client" require "hot_tub/clients/excon_client" require "hot_tub/clients/http_client_client" if RUBY_VERSION < '1.9' or (defined? RUBY_ENGINE and 'jruby' == RUBY_ENGINE) module HotTub @@logger = Logger.new(STDOUT) def self.logger @@logger end def self.logger=logger @@logger = logger end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
hot_tub-0.0.4 | lib/hot_tub.rb |
hot_tub-0.0.3 | lib/hot_tub.rb |
hot_tub-0.0.2 | lib/hot_tub.rb |
hot_tub-0.0.1 | lib/hot_tub.rb |