Sha256: d736991506f2c95167435e7268d243c5657af0626c772da429734318dfc5ef04

Contents?: true

Size: 622 Bytes

Versions: 57

Compression:

Stored size: 622 Bytes

Contents

# typed: strict
# frozen_string_literal: true

module Hephaestus
  module HTTP
    OK = "OK"
    OK_I = 200

    CREATED = "Created"
    CREATED_I = 201

    NO_CONTENT = "No Content"
    NO_CONTENT_I = 204

    FOUND = "Found"
    FOUND_I = 302

    BAD_REQUEST = "Bad Request"
    BAD_REQUEST_I = 400

    UNAUTHORIZED = "Unauthorized"
    UNAUTHORIZED_I = 401

    FORBIDDEN = "Forbidden"
    FORBIDDEN_I = 403

    NOT_FOUND = "Not Found"
    NOT_FOUND_I = 404

    NOT_ACCEPTABLE = "Not Acceptable"
    NOT_ACCEPTABLE_I = 406

    SERVICE_UNAVAILABLE = "Service Unavailable"
    SERVICE_UNAVAILABLE_I = 503
  end
end

Version data entries

57 entries across 57 versions & 1 rubygems

Version Path
hephaestus-0.8.15.5 lib/hephaestus/http.rb
hephaestus-0.8.15.4 lib/hephaestus/http.rb
hephaestus-0.8.15.3 lib/hephaestus/http.rb
hephaestus-0.8.15.2 lib/hephaestus/http.rb
hephaestus-0.8.15.1 lib/hephaestus/http.rb
hephaestus-0.8.15 lib/hephaestus/http.rb
hephaestus-0.8.14 lib/hephaestus/http.rb
hephaestus-0.8.13 lib/hephaestus/http.rb
hephaestus-0.8.12.2 lib/hephaestus/http.rb
hephaestus-0.8.12.1 lib/hephaestus/http.rb
hephaestus-0.8.12 lib/hephaestus/http.rb
hephaestus-0.8.11 lib/hephaestus/http.rb
hephaestus-0.8.10 lib/hephaestus/http.rb
hephaestus-0.8.9.2 lib/hephaestus/http.rb
hephaestus-0.8.9.1 lib/hephaestus/http.rb
hephaestus-0.8.9 lib/hephaestus/http.rb
hephaestus-0.8.8 lib/hephaestus/http.rb
hephaestus-0.8.7.5 lib/hephaestus/http.rb
hephaestus-0.8.7.4 lib/hephaestus/http.rb
hephaestus-0.8.7.3 lib/hephaestus/http.rb