Module: Octokit::Client::Gists

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

Instance Method Summary collapse

Instance Method Details

#create_gist(options = {}) ⇒ Hashie::Mash

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:

  • (Hashie::Mash)

    Newly created gist info

See Also:



59
60
61
# File 'lib/octokit/client/gists.rb', line 59

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

#create_gist_comment(gist_id, comment, options = {}) ⇒ Hashie::Mash

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:

  • (Hashie::Mash)

    Hash representing the new comment.

See Also:



166
167
168
169
# File 'lib/octokit/client/gists.rb', line 166

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:



128
129
130
# File 'lib/octokit/client/gists.rb', line 128

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:



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

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:

  • Hashie::Mash

    Newly created gist info

See Also:



82
83
84
# File 'lib/octokit/client/gists.rb', line 82

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

#fork_gist(gist, options = {}) ⇒ Hashie::Mash

Fork a gist

Parameters:

  • gist (String)

    Gist ID

Returns:

  • (Hashie::Mash)

    Data for the new gist

See Also:



119
120
121
# File 'lib/octokit/client/gists.rb', line 119

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

#gist(gist, options = {}) ⇒ Hash::Mash

Get a single gist

Parameters:

  • gist (String)

    ID of gist to fetch

Returns:

  • (Hash::Mash)

    Gist information

See Also:



45
46
47
# File 'lib/octokit/client/gists.rb', line 45

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

#gist_comment(gist_id, gist_comment_id, options = {}) ⇒ Hashie::Mash

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:

  • (Hashie::Mash)

    Hash representing gist comment.

See Also:



151
152
153
# File 'lib/octokit/client/gists.rb', line 151

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<Hashie::Mash>

List gist comments

Examples:

Octokit.gist_comments('3528ae645')

Parameters:

  • gist_id (String)

    Gist Id.

Returns:

  • (Array<Hashie::Mash>)

    Array of hashes representing comments.

See Also:



139
140
141
# File 'lib/octokit/client/gists.rb', line 139

def gist_comments(gist_id, options={})
  get "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:



110
111
112
# File 'lib/octokit/client/gists.rb', line 110

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

#gists(username = nil, options = {}) ⇒ Array<Hashie::Mash> 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<Hashie::Mash>)

    A list of gists

See Also:



14
15
16
17
18
19
20
# File 'lib/octokit/client/gists.rb', line 14

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

#public_gists(options = {}) ⇒ Array<Hashie::Mash>

List public gists

Examples:

Fetch all public gists

Octokit.public_gists

Returns:

  • (Array<Hashie::Mash>)

    A list of gists

See Also:



29
30
31
# File 'lib/octokit/client/gists.rb', line 29

def public_gists(options={})
  get '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:



92
93
94
# File 'lib/octokit/client/gists.rb', line 92

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

#starred_gists(options = {}) ⇒ Array<Hashie::Mash>

List the authenticated user’s starred gists

Returns:

  • (Array<Hashie::Mash>)

    A list of gists



36
37
38
# File 'lib/octokit/client/gists.rb', line 36

def starred_gists(options={})
  get '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:



101
102
103
# File 'lib/octokit/client/gists.rb', line 101

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 = {}) ⇒ Hashie::Mash

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:

  • (Hashie::Mash)

    Hash representing the updated comment.

See Also:



183
184
185
186
# File 'lib/octokit/client/gists.rb', line 183

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