class Github::Repos::Contents
def readme(user_name, repo_name, params={})
github.repos.contents.readme 'user-name', 'repo-name'
github = Github.new
= Examples
This method returns the preferred README for a repository.
Get the README
def readme(user_name, repo_name, params={}) set :user => user_name, :repo => repo_name normalize! params get_request("/repos/#{user_name}/#{repo_name}/readme", params) end