Codebase list ruby-gitlab / 87adcfe lib / gitlab / client / versions.rb
87adcfe

Tree @87adcfe (Download .tar.gz)

versions.rb @87adcferaw · 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