Skip to content

Commit

Permalink
bugfix(require statements): Update calls to match directory structure.
Browse files Browse the repository at this point in the history
  • Loading branch information
tomciopp committed Dec 2, 2016
1 parent 9aa298c commit 2f87265
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/typhoeus.rb
Expand Up @@ -19,17 +19,17 @@

# If the Redis gem is available, load the redis cache adapter
if defined?(Redis)
require "typhoeus/redis_cache"
require "typhoeus/cache/redis"
end

# If the Dalli gem is available, load the Dalli cache adapter
if defined?(Dalli)
require "typhoeus/dalli_cache"
require "typhoeus/cache/dalli"
end

# If we are using Rails, load the Rails cache adapter
if defined?(Rails)
require "typhoeus/rails_cache"
require "typhoeus/cache/rails"
end

# If we are using Rails, then we will include the Typhoeus railtie.
Expand Down

0 comments on commit 2f87265

Please sign in to comment.