Sha256: 27cf2c3ae265563f47cc624d0ab8f1818d2b06d002d5b0349b4e7a48449a1b2e

Contents?: true

Size: 904 Bytes

Versions: 1

Compression:

Stored size: 904 Bytes

Contents

#encoding: utf-8

require 'hh/version'
require 'faraday'
require 'faraday_middleware'

module HH
  class << self

    # Alias for Hh::Client.new
    #
    # @return [Hh::Client]
    def client
      HH::Client.new
    end

    # Delegate to HH::Client
    def method_missing(method, *args, &block)
      return super unless new.respond_to?(method)
      new.send(method, *args, &block)
    end

    def respond_to?(method, include_private = false)
      new.respond_to?(method, include_private) || super(method, include_private)
    end
  end
end #HH

require 'hh/API/vacancy_employer'
require 'hh/API/specialization'
require 'hh/API/employment'
require 'hh/API/statistic'
require 'hh/API/schedule'
require 'hh/API/currency'
require 'hh/API/employer'
require 'hh/API/vacancy'
require 'hh/API/region'
require 'hh/API/field'
require 'hh/API/metro'
require 'hh/api'
require 'hh/request'
require 'hh/client'

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
hh-0.0.5 lib/hh.rb