Sha256: 916887a14805067c7e233d31acb00a99177682c8edfda0960cedce43201912d5
Contents?: true
Size: 581 Bytes
Versions: 54
Compression:
Stored size: 581 Bytes
Contents
module Octokit # Class to parse and create Gist URLs class Gist # !@attribute id # @return [String] Gist ID attr_accessor :id # Instantiate {Gist} object from Gist URL # @ return [Gist] def self.from_url(url) Gist.new(URI.parse(url).path[1..-1]) end def initialize(gist) case gist when Fixnum, String @id = gist.to_s end end # Gist ID # @return [String] def to_s @id end # Gist URL # @return [String] def url "https://gist.github.com/#{@id}" end end end
Version data entries
54 entries across 53 versions & 2 rubygems