Sha256: eab8a5077dbf81c16ca3c2996905e32a9daceb1957e04b62dff4cd5c8279d486
Contents?: true
Size: 1.75 KB
Versions: 1
Compression:
Stored size: 1.75 KB
Contents
# frozen_string_literal: true module Github class Client::Repos::Projects < API PREVIEW_MEDIA = "application/vnd.github.inertia-preview+json".freeze # :nodoc: # List a repo's projects # # @example # github = Github.new # github.repos.projects.list owner: 'owner-name', repo: 'repo-name' # # @example # github = Github.new # github.repos.projects.list state: 'open', owner: 'owner-name', repo: 'repo-name' # # @example # github.repos.projects.list owner: 'owner-name', repo: 'repo-name' { |cbr| .. } # # @return [Array] # # @api public def list(*args) arguments(args, required: [:owner, :repo]) params = arguments.params params["accept"] ||= PREVIEW_MEDIA response = get_request("/repos/#{arguments.owner}/#{arguments.repo}/projects", params) return response unless block_given? response.each { |el| yield el } end alias :all :list # 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' # # @api public def create(*args) arguments(args, required: [:owner, :repo]) do assert_required %w[ name ] end params = arguments.params params["accept"] ||= PREVIEW_MEDIA post_request("/repos/#{arguments.owner}/#{arguments.repo}/projects", params) end end # Projects end # Github
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
github_api-0.17.0 | lib/github_api/client/repos/projects.rb |