Sha256: 07676e21d6ba8b4fda426dadfcbbf9a21aa67a9952eed4868a2eabb1de52696c
Contents?: true
Size: 941 Bytes
Versions: 2
Compression:
Stored size: 941 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/employer_vacancies' 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/metro' require 'hh/API/industries' require 'hh/API/dictionaries' require 'hh/api' require 'hh/request' require 'hh/client'
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
hh-0.0.7 | lib/hh.rb |
hh-0.0.6 | lib/hh.rb |