class Github::GitData::Blobs
def create(*args)
"encoding" => "utf-8"
"content" => "Content of the blob",
github.git_data.blobs.create 'user-name', 'repo-name',
github = Github.new
= Examples
* :encoding - String containing encodingutf-8 or base64
* :content - String of content
= Inputs
Create a blob
def create(*args) arguments(args, :required => [:user, :repo]) do sift VALID_BLOB_PARAM_NAMES assert_required VALID_BLOB_PARAM_NAMES end post_request("/repos/#{user}/#{repo}/git/blobs", arguments.params) end