Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
gingr / lib / gingr / client.rb
Size: Mime:
module Gingr
  # Wrapper for the Gingr REST API.
  class Client < API
    Dir[File.expand_path('../client/*.rb', __FILE__)].each{|f| require f}

    # TODO: Be sure to update these includes to the actual resources available in the client directory.
    include Gingr::Client::Owners
    include Gingr::Client::Reservations
  end
end