module WADL

Constants

VERSION

Private Class Methods

require_oauth(lib) click to toggle source
# File lib/wadl.rb, line 61
def require_oauth(lib)
  require "oauth/#{lib}"
rescue LoadError => err
  define_singleton_method(__method__) { |*| }  # only warn once
  warn "For OAuth support, install the `oauth' library. (#{err})"
end