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:



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

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:



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

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:



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

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:



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

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:



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

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:



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

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:



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

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:



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

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:



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

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:



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

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:



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

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

See Also:



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

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:



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

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:



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

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