Module: Gitlab::Client::MergeRequests

Included in:
Gitlab::Client
Defined in:
lib/gitlab/client/merge_requests.rb

Overview

Defines methods related to merge requests.

Instance Method Summary collapse

Instance Method Details

#accept_merge_request(project, id, options = {}) ⇒ Gitlab::ObjectifiedHash

Accepts a merge request.

Examples:

Gitlab.accept_merge_request(5, 42, :merge_commit_message => 'Nice!')

Parameters:

  • project (Integer)

    The ID of a project.

  • id (Integer)

    The ID of a merge request.

  • options (Hash) (defaults to: {})

    A customizable set of options.

Options Hash (options):

  • :merge_commit_message (String)

    Custom merge commit message

Returns:



81
82
83
# File 'lib/gitlab/client/merge_requests.rb', line 81

def accept_merge_request(project, id, options={})
  put("/projects/#{project}/merge_request/#{id}/merge", :body => options)
end

#create_merge_request(project, title, options = {}) ⇒ Gitlab::ObjectifiedHash

Creates a merge request.

Examples:

Gitlab.create_merge_request(5, 'New merge request',
  :source_branch => 'source_branch', :target_branch => 'target_branch')
Gitlab.create_merge_request(5, 'New merge request',
  :source_branch => 'source_branch', :target_branch => 'target_branch', :assignee_id => 42)

Parameters:

  • project (Integer)

    The ID of a project.

  • title (String)

    The title of a merge request.

  • options (Hash) (defaults to: {})

    A customizable set of options.

Options Hash (options):

  • :source_branch (String) — default: required

    The source branch name.

  • :target_branch (String) — default: required

    The target branch name.

  • :assignee_id (Integer) — default: optional

    The ID of a user to assign merge request.

  • :target_project_id (Integer) — default: optional

    The target project ID.

Returns:



48
49
50
51
# File 'lib/gitlab/client/merge_requests.rb', line 48

def create_merge_request(project, title, options={})
  body = {:title => title}.merge(options)
  post("/projects/#{project}/merge_requests", :body => body)
end

#create_merge_request_comment(project, id, note) ⇒ Gitlab::ObjectifiedHash

Adds a comment to a merge request.

Examples:

Gitlab.create_merge_request_comment(5, 1, "Awesome merge!")
Gitlab.create_merge_request_comment('gitlab', 1, "Awesome merge!")

Parameters:

  • project (Integer)

    The ID of a project.

  • id (Integer)

    The ID of a merge request.

  • note (String)

    The content of a comment.

Returns:



95
96
97
# File 'lib/gitlab/client/merge_requests.rb', line 95

def create_merge_request_comment(project, id, note)
  post("/projects/#{project}/merge_request/#{id}/comments", :body => {:note => note})
end

#merge_request(project, id) ⇒ Gitlab::ObjectifiedHash

Gets a single merge request.

Examples:

Gitlab.merge_request(5, 36)

Parameters:

  • project (Integer)

    The ID of a project.

  • id (Integer)

    The ID of a merge request.

Returns:



28
29
30
# File 'lib/gitlab/client/merge_requests.rb', line 28

def merge_request(project, id)
  get("/projects/#{project}/merge_request/#{id}")
end

#merge_request_changes(project, id) ⇒ Gitlab::ObjectifiedHash

Gets the changes of a merge request.

Examples:

Gitlab.merge_request_changes(5, 1)

Parameters:

  • project (Integer)

    The ID of a project.

  • id (Integer)

    The ID of a merge request.

Returns:



123
124
125
# File 'lib/gitlab/client/merge_requests.rb', line 123

def merge_request_changes(project, id)
  get("/projects/#{project}/merge_request/#{id}/changes")
end

#merge_request_comments(project, id, options = {}) ⇒ Gitlab::ObjectifiedHash

Gets the comments on a merge request.

Examples:

Gitlab.merge_request_comments(5, 1)
Gitlab.merge_request_comments(5, 1, :per_page =>10, :page => 2)

Parameters:

  • project (Integer)

    The ID of a project.

  • id (Integer)

    The ID of a merge request.

  • options (Hash) (defaults to: {})

    A customizable set of options.

Options Hash (options):

  • :page (Integer)

    The page number.

  • :per_page (Integer)

    The number of results per page.

Returns:



111
112
113
# File 'lib/gitlab/client/merge_requests.rb', line 111

def merge_request_comments(project, id, options={})
  get("/projects/#{project}/merge_request/#{id}/comments", :query => options)
end

#merge_requests(project, options = {}) ⇒ Array<Gitlab::ObjectifiedHash>

Gets a list of project merge requests.

Examples:

Gitlab.merge_requests(5)
Gitlab.merge_requests(:per_page => 40)

Parameters:

  • project (Integer)

    The ID of a project.

  • options (Hash) (defaults to: {})

    A customizable set of options.

Options Hash (options):

  • :page (Integer)

    The page number.

  • :per_page (Integer)

    The number of results per page.

Returns:



16
17
18
# File 'lib/gitlab/client/merge_requests.rb', line 16

def merge_requests(project, options={})
  get("/projects/#{project}/merge_requests", :query => options)
end

#update_merge_request(project, id, options = {}) ⇒ Gitlab::ObjectifiedHash

Updates a merge request.

Examples:

Gitlab.update_merge_request(5, 42, :title => 'New title')

Parameters:

  • project (Integer)

    The ID of a project.

  • id (Integer)

    The ID of a merge request.

  • options (Hash) (defaults to: {})

    A customizable set of options.

Options Hash (options):

  • :title (String)

    The title of a merge request.

  • :source_branch (String)

    The source branch name.

  • :target_branch (String)

    The target branch name.

  • :assignee_id (Integer)

    The ID of a user to assign merge request.

  • :state_event (String)

    New state (close|reopen|merge).

Returns:



67
68
69
# File 'lib/gitlab/client/merge_requests.rb', line 67

def update_merge_request(project, id, options={})
  put("/projects/#{project}/merge_request/#{id}", :body => options)
end