module Hyperkit

Ruby toolkit for the LXD API. LXD - the next-generation container hypervisor for Linux

#

Modeled on Octokit::Configurable #

#

Original Octokit license # —————————————————————————- # Copyright © 2009-2016 Wynn Netherland, Adam Stacoviak, Erik Michaels-Ober #

#

Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the “Software”), # to deal in the Software without restriction, including without limitation # the rights to use, copy, modify, merge, publish, distribute, sublicense, # and/or sell copies of the Software, and to permit persons to whom the # Software is furnished to do so, subject to the following conditions: #

#

The above copyright notice and this permission notice shall be included # in all copies or substantial portions of the Software. # —————————————————————————- #

#
#

Modeled on Octokit::Error #

#

Original Octokit license # —————————————————————————- # Copyright © 2009-2016 Wynn Netherland, Adam Stacoviak, Erik Michaels-Ober #

#

Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the “Software”), # to deal in the Software without restriction, including without limitation # the rights to use, copy, modify, merge, publish, distribute, sublicense, # and/or sell copies of the Software, and to permit persons to whom the # Software is furnished to do so, subject to the following conditions: #

#

The above copyright notice and this permission notice shall be included # in all copies or substantial portions of the Software. # —————————————————————————- #

#

Constants

VERSION

Public Class Methods

client() click to toggle source

API client based on configured options {Configurable}

@return [Hyperkit::Client] API wrapper

# File lib/hyperkit.rb, line 36
def client
  return @client if defined?(@client) && @client.same_options?(options)
  @client = Hyperkit::Client.new(options)
end

Private Class Methods

method_missing(method_name, *args, &block) click to toggle source
Calls superclass method
# File lib/hyperkit.rb, line 47
def method_missing(method_name, *args, &block)
  if client.respond_to?(method_name)
    return client.send(method_name, *args, &block)
  end

  super
end
respond_to_missing?(method_name, include_private=false) click to toggle source
# File lib/hyperkit.rb, line 43
def respond_to_missing?(method_name, include_private=false)
  client.respond_to?(method_name, include_private)
end