lib/httpx.rb in httpx-0.6.3 vs lib/httpx.rb in httpx-0.6.4
- old
+ new
@@ -45,13 +45,15 @@
def self.register_plugin(name, mod)
@plugins[name] = mod
end
end
+ # :nocov:
def self.const_missing(const_name)
super unless const_name == :Client
warn "DEPRECATION WARNING: the class #{self}::Client is deprecated. Use #{self}::Session instead."
Session
end
+ # :nocov:
extend Chainable
end