Codebase list ruby-gitlab / 9962458 lib / gitlab / client / versions.rb
9962458

Tree @9962458 (Download .tar.gz)

versions.rb @9962458raw · history · blame

# frozen_string_literal: true

class Gitlab::Client
  # Defines methods related to version
  # @see https://docs.gitlab.com/ce/api/version.html
  module Versions
    # Returns server version.
    # @see https://docs.gitlab.com/ce/api/version.html
    #
    # @example
    #   Gitlab.version
    #
    # @return [Array<Gitlab::ObjectifiedHash>]
    def version
      get('/version')
    end
  end
end