class Github::Client::Orgs::Projects

Public Instance Methods

all(*args)
Alias for: list
create(*args) click to toggle source

Create a new project for the specified repo

@param [Hash] params @option params [String] :name

Required string - The name of the project.

@option params [String] :body

Optional string - The body of the project.

@example

github = Github.new
github.repos.create 'owner-name', 'repo-name', name: 'project-name'
github.repos.create name: 'project-name', body: 'project-body', owner: 'owner-name', repo: 'repo-name'
# File lib/github_api/client/orgs/projects.rb, line 46
def create(*args)
  arguments(args, required: [:org_name]) do
    assert_required %w[ name ]
  end
  params = arguments.params

  params["accept"] ||= PREVIEW_MEDIA

  post_request("/orgs/#{arguments.org_name}/projects", params)
end
list(*args) { |el| ... } click to toggle source

List your organization projects

@see List your organization projects

@example

github = Github.new 'org-name'
github.orgs.projects.list 'org-name' { |project| ... }

@example

github = Github.new
github.orgs.projects.list 'org-name', state: 'closed'

@api public

# File lib/github_api/client/orgs/projects.rb, line 22
def list(*args)
  arguments(args, required: [:org_name])
  params = arguments.params

  params["accept"] ||= PREVIEW_MEDIA

  response = get_request("/orgs/#{arguments.org_name}/projects", params)
  return response unless block_given?
  response.each { |el| yield el }
end
Also aliased as: all