help ruby disambiguate the constants

This commit is contained in:
rick 2010-10-05 11:46:13 -07:00
parent 176c647bdf
commit ca5ec52b71
4 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
module Faraday
class Adapter
class ActionDispatch < Adapter
class ActionDispatch < Faraday::Adapter
attr_reader :session
# Initializes a new middleware instance for each request. Instead of

View File

@ -7,7 +7,7 @@ end
module Faraday
class Adapter
class NetHttp < Adapter
class NetHttp < Faraday::Adapter
def call(env)
super

View File

@ -1,6 +1,6 @@
module Faraday
class Adapter
class Patron < Adapter
class Patron < Faraday::Adapter
begin
require 'patron'
rescue LoadError, NameError => e

View File

@ -1,6 +1,6 @@
module Faraday
class Adapter
class Typhoeus < Adapter
class Typhoeus < Faraday::Adapter
self.supports_parallel_requests = true
def self.setup_parallel_manager(options = {})