Sha256: 50ef7e3c80eb03506e8b8c23fa48bcd52f52754feeb3e8a17101437e253b7c87

Contents?: true

Size: 1.33 KB

Versions: 1

Compression:

Stored size: 1.33 KB

Contents

require File.expand_path('../open311/configuration', __FILE__)
require File.expand_path('../open311/client', __FILE__)
require File.expand_path('../open311/service_request', __FILE__)

module Open311
  extend Configuration

  # Alias for Open311::Client.new
  #
  # @return [Open311::Client]
  def self.client(options={})
    Open311::Client.new(options)
  end

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

  # Custom error class for rescuing from all Open311 errors
  class Error < StandardError; end

  # Raised when Open311 returns a 400 HTTP status code
  class BadRequest < Error; end

  # Raised when Open311 returns a 401 HTTP status code
  class Unauthorized < Error; end

  # Raised when Open311 returns a 403 HTTP status code
  class Forbidden < Error; end

  # Raised when Open311 returns a 404 HTTP status code
  class NotFound < Error; end

  # Raised when Open311 returns a 406 HTTP status code
  class NotAcceptable < Error; end

  # Raised when Open311 returns a 500 HTTP status code
  class InternalServerError < Error; end

  # Raised when Open311 returns a 502 HTTP status code
  class BadGateway < Error; end

  # Raised when Open311 returns a 503 HTTP status code
  class ServiceUnavailable < Error; end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
open311-0.1.0 lib/open311.rb