Sha256: f36ceb7a7622af278c03d4a6d39381ddf925d23c3067444c8191cf06245f8644

Contents?: true

Size: 1.47 KB

Versions: 6

Compression:

Stored size: 1.47 KB

Contents

# encoding: utf-8

require_relative '../../api'

module Github
  # Since blobs can be any arbitrary binary data, the input and responses for
  # the blob api takes an encoding parameter that can be either utf-8 or base64.
  # If your data cannot be losslessly sent as a UTF-8 string, you can base64 encode it.
  class Client::GitData::Blobs < API

    VALID_BLOB_PARAM_NAMES = %w[ content encoding ].freeze

    # Get a blob
    #
    # @example
    #  github = Github.new
    #  github.git_data.blobs.get 'user-name', 'repo-name', 'sha'
    #
    # @api public
    def get(*args)
      arguments(args, required: [:user, :repo, :sha])

      get_request("/repos/#{arguments.user}/#{arguments.repo}/git/blobs/#{arguments.sha}", arguments.params)
    end
    alias :find :get

    # Create a blob
    #
    # @param [Hash] params
    # @input params [String] :content
    #   String of content.
    # @input params [String] :encoding
    #   String containing encoding<tt>utf-8</tt> or <tt>base64</tt>
    #
    # @examples
    #  github = Github.new
    #  github.git_data.blobs.create 'user-name', 'repo-name',
    #    content: "Content of the blob",
    #    encoding: "utf-8"
    #
    # @api public
    def create(*args)
      arguments(args, required: [:user, :repo]) do
        permit VALID_BLOB_PARAM_NAMES
        assert_required VALID_BLOB_PARAM_NAMES
      end

      post_request("/repos/#{arguments.user}/#{arguments.repo}/git/blobs", arguments.params)
    end
  end # GitData::Blobs
end # Github

Version data entries

6 entries across 6 versions & 3 rubygems

Version Path
github_api2-1.0.1 lib/github_api2/client/git_data/blobs.rb
github_api2-1.0.0 lib/github_api2/client/git_data/blobs.rb
github_api-0.19.0 lib/github_api/client/git_data/blobs.rb
lingfennan-github_api-0.18.2 lib/github_api/client/git_data/blobs.rb
github_api-0.18.2 lib/github_api/client/git_data/blobs.rb
github_api-0.18.1 lib/github_api/client/git_data/blobs.rb