Module: Octokit::Client::Gists

Included in:
Octokit::Client
Defined in:
lib/octokit/client/gists.rb

Overview

Methods for the Gists API

Instance Method Summary collapse

Instance Method Details

#create_gist(options = {}) ⇒ Sawyer::Resource

Create a gist

Parameters:

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

    Gist information.

Options Hash (options):

  • :description (String)
  • :public (Boolean)

    Sets gist visibility

  • :files (Array<Hash>)

    Files that make up this gist. Keys should be the filename, the value a Hash with a :content key with text content of the Gist.

Returns:

  • (Sawyer::Resource)

    Newly created gist info

See Also:



63
64
65
# File 'lib/octokit/client/gists.rb', line 63

def create_gist(options = {})
  post 'gists', options
end

#create_gist_comment(gist_id, comment, options = {}) ⇒ Sawyer::Resource

Create gist comment

Requires authenticated client.

Examples:

@client.create_gist_comment('3528645', 'This is very helpful.')

Parameters:

  • gist_id (String)

    Id of the gist.

  • comment (String)

    Comment contents.

Returns:

  • (Sawyer::Resource)

    Hash representing the new comment.

See Also:



169
170
171
172
# File 'lib/octokit/client/gists.rb', line 169

def create_gist_comment(gist_id, comment, options = {})
  options.merge!({:body => comment})
  post "gists/#{gist_id}/comments", options
end

#delete_gist(gist, options = {}) ⇒ Boolean

Delete a gist

Parameters:

  • gist (String)

    Gist ID

Returns:

  • (Boolean)

    Indicating success of deletion

See Also:



132
133
134
# File 'lib/octokit/client/gists.rb', line 132

def delete_gist(gist, options = {})
  boolean_from_response :delete, "gists/#{Gist.new gist}", options
end

#delete_gist_comment(gist_id, gist_comment_id, options = {}) ⇒ Boolean

Delete gist comment

Requires authenticated client.

Examples:

@client.delete_gist_comment('208sdaz3', '586399')

Parameters:

  • gist_id (String)

    Id of the gist.

  • gist_comment_id (Integer)

    Id of the gist comment to delete.

Returns:

  • (Boolean)

    True if comment deleted, false otherwise.

See Also:



200
201
202
# File 'lib/octokit/client/gists.rb', line 200

def delete_gist_comment(gist_id, gist_comment_id, options = {})
  boolean_from_response(:delete, "gists/#{gist_id}/comments/#{gist_comment_id}", options)
end

#edit_gist(gist, options = {}) ⇒ Object

Edit a gist

Examples:

Update a gist

@client.edit_gist('some_id', {
  :files => {"boo.md" => {"content" => "updated stuff"}}
})

Parameters:

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

    Gist information.

Options Hash (options):

  • :description (String)
  • :public (Boolean)

    Sets gist visibility

  • :files (Hash)

    Files that make up this gist. Keys should be the filename, the value a Hash with a :content key with text content of the Gist.

    NOTE: All files from the previous version of the gist are carried over by default if not included in the hash. Deletes can be performed by including the filename with a null hash.

Returns:

  • Sawyer::Resource

    Newly created gist info

See Also:



86
87
88
# File 'lib/octokit/client/gists.rb', line 86

def edit_gist(gist, options = {})
  patch "gists/#{Gist.new gist}", options
end

#fork_gist(gist, options = {}) ⇒ Sawyer::Resource

Fork a gist

Parameters:

  • gist (String)

    Gist ID

Returns:

  • (Sawyer::Resource)

    Data for the new gist

See Also:



123
124
125
# File 'lib/octokit/client/gists.rb', line 123

def fork_gist(gist, options = {})
  post "gists/#{Gist.new gist}/forks", options
end

#gist(gist, options = {}) ⇒ Sawyer::Resource

Get a single gist

Parameters:

  • gist (String)

    ID of gist to fetch

Returns:

  • (Sawyer::Resource)

    Gist information

See Also:



49
50
51
# File 'lib/octokit/client/gists.rb', line 49

def gist(gist, options = {})
  get "gists/#{Gist.new gist}", options
end

#gist_comment(gist_id, gist_comment_id, options = {}) ⇒ Sawyer::Resource

Get gist comment

Examples:

Octokit.gist_comment('208sdaz3', 1451398)

Parameters:

  • gist_id (String)

    Id of the gist.

  • gist_comment_id (Integer)

    Id of the gist comment.

Returns:

  • (Sawyer::Resource)

    Hash representing gist comment.

See Also:



155
156
157
# File 'lib/octokit/client/gists.rb', line 155

def gist_comment(gist_id, gist_comment_id, options = {})
  get "gists/#{gist_id}/comments/#{gist_comment_id}", options
end

#gist_comments(gist_id, options = {}) ⇒ Array<Sawyer::Resource>

List gist comments

Examples:

Octokit.gist_comments('3528ae645')

Parameters:

  • gist_id (String)

    Gist Id.

Returns:

  • (Array<Sawyer::Resource>)

    Array of hashes representing comments.

See Also:



143
144
145
# File 'lib/octokit/client/gists.rb', line 143

def gist_comments(gist_id, options = {})
  paginate "gists/#{gist_id}/comments", options
end

#gist_starred?(gist, options = {}) ⇒ Boolean

Check if a gist is starred

Parameters:

  • gist (String)

    Gist ID

Returns:

  • (Boolean)

    Indicates if gist is starred

See Also:



114
115
116
# File 'lib/octokit/client/gists.rb', line 114

def gist_starred?(gist, options = {})
  boolean_from_response :get, "gists/#{Gist.new gist}/star", options
end

#gists(username = nil, options = {}) ⇒ Array<Sawyer::Resource> Also known as: list_gists

List gists for a user or all public gists

Examples:

Fetch all gists for defunkt

Octokit.gists('defunkt')

Fetch all public gists

Octokit.gists

Parameters:

  • username (String) (defaults to: nil)

    An optional user to filter listing

Returns:

  • (Array<Sawyer::Resource>)

    A list of gists

See Also:



18
19
20
21
22
23
24
# File 'lib/octokit/client/gists.rb', line 18

def gists(username=nil, options = {})
  if username.nil?
    paginate 'gists', options
  else
    paginate "users/#{username}/gists", options
  end
end

#public_gists(options = {}) ⇒ Array<Sawyer::Resource>

List public gists

Examples:

Fetch all public gists

Octokit.public_gists

Returns:

  • (Array<Sawyer::Resource>)

    A list of gists

See Also:



33
34
35
# File 'lib/octokit/client/gists.rb', line 33

def public_gists(options = {})
  paginate 'gists/public', options
end

#star_gist(gist, options = {}) ⇒ Boolean

Star a gist

Parameters:

  • gist (String)

    Gist ID

Returns:

  • (Boolean)

    Indicates if gist is starred successfully

See Also:



96
97
98
# File 'lib/octokit/client/gists.rb', line 96

def star_gist(gist, options = {})
  boolean_from_response :put, "gists/#{Gist.new gist}/star", options
end

#starred_gists(options = {}) ⇒ Array<Sawyer::Resource>

List the authenticated user’s starred gists

Returns:

  • (Array<Sawyer::Resource>)

    A list of gists



40
41
42
# File 'lib/octokit/client/gists.rb', line 40

def starred_gists(options = {})
  paginate 'gists/starred', options
end

#unstar_gist(gist, options = {}) ⇒ Boolean

Unstar a gist

Parameters:

  • gist (String)

    Gist ID

Returns:

  • (Boolean)

    Indicates if gist is unstarred successfully

See Also:



105
106
107
# File 'lib/octokit/client/gists.rb', line 105

def unstar_gist(gist, options = {})
  boolean_from_response :delete, "gists/#{Gist.new gist}/star", options
end

#update_gist_comment(gist_id, gist_comment_id, comment, options = {}) ⇒ Sawyer::Resource

Update gist comment

Requires authenticated client

Examples:

@client.update_gist_comment('208sdaz3', '3528645', ':heart:')

Parameters:

  • gist_id (String)

    Id of the gist.

  • gist_comment_id (Integer)

    Id of the gist comment to update.

  • comment (String)

    Updated comment contents.

Returns:

  • (Sawyer::Resource)

    Hash representing the updated comment.

See Also:



185
186
187
188
# File 'lib/octokit/client/gists.rb', line 185

def update_gist_comment(gist_id, gist_comment_id, comment, options = {})
  options.merge!({:body => comment})
  patch "gists/#{gist_id}/comments/#{gist_comment_id}", options
end