1

基本的に、octokit github api ruby​​ ツールキットを使用してリポジトリの名前を取得しようとしています。私はドキュメントとそのコードファイルの中を見ました:

# Get a single repository
  #
  # @see https://developer.github.com/v3/repos/#get
  # @see https://developer.github.com/v3/licenses/#get-a-repositorys-license
  # @param repo [Integer, String, Hash, Repository] A GitHub repository
  # @return [Sawyer::Resource] Repository information
  def repository(repo, options = {})
    get Repository.path(repo), options
  end
  alias :repo :repository

  # Edit a repository
  #
  # @see https://developer.github.com/v3/repos/#edit
  # @param repo [String, Hash, Repository] A GitHub repository
  # @param options [Hash] Repository information to update
  # @option options [String] :name Name of the repo
  # @option options [String] :description Description of the repo
  # @option options [String] :homepage Home page of the repo
  # @option options [String] :private `true` makes the repository private, and `false` makes it public.
  # @option options [String] :has_issues `true` enables issues for this repo, `false` disables issues.
  # @option options [String] :has_wiki `true` enables wiki for this repo, `false` disables wiki.
  # @option options [String] :has_downloads `true` enables downloads for this repo, `false` disables downloads.
  # @option options [String] :default_branch Update the default branch for this repository.
  # @return [Sawyer::Resource] Repository information

options パラメーターがハッシュであることは理解していますが、リポジトリ名を取得するための引数を指定する方法についてはまだ少し混乱しています。これが私のコードです:

require 'octokit'
require 'netrc'

class Base
 # attr_accessor :un, :pw

 # un = username
 # pw = password

def initialize
  @client = Octokit::Client.new(:access_token =>
   '<access_token>')

  print "Username you want to search?\t"
  @username = gets.chomp.to_s

  @user = @client.user(@username)

  puts "#{@username} email is:\t\t#{@user.email}"
  puts @user.repository('converse', :options => name)
 end
end



start = Base.new

私の acess_token を使用すると、自分自身または他の誰かの github 名、電子メール、組織などを取得できますが、メソッドを使用すると、常に options パラメータがあり、これに正しい引数を指定するのに苦労しています。

4

1 に答える 1