Module: Octokit::Client::Gitignore
| Relationships & Source Files | |
| Extension / Inclusion / Inheritance Descendants | |
| Included In: | |
| Defined in: | lib/octokit/client/gitignore.rb | 
Overview
Methods for the Gitignore API
Instance Method Summary
- 
    
      #gitignore_template(template_name, options = {})  ⇒ Sawyer::Resource 
    
    Get a gitignore template. 
- 
    
      #gitignore_templates(options = {})  ⇒ Array<String> 
    
    Listing available gitignore templates. 
Instance Method Details
    #gitignore_template(template_name, options = {})  ⇒ Sawyer::Resource 
  
Get a gitignore template.
Use the raw media type to get the raw contents.
# File 'lib/octokit/client/gitignore.rb', line 38
def gitignore_template(template_name, = {}) get "gitignore/templates/#{template_name}", end
    #gitignore_templates(options = {})  ⇒ Array<String> 
  
Listing available gitignore templates.
These templates can be passed option when creating a repository.
# File 'lib/octokit/client/gitignore.rb', line 19
def gitignore_templates( = {}) get 'gitignore/templates', end