Sha256: 9065e2a321bd6c8f2d88ace915e3acaabbcc36f7d938729c4d0e904d30490b0f
Contents?: true
Size: 964 Bytes
Versions: 63
Compression:
Stored size: 964 Bytes
Contents
# <!-- rdoc-file=lib/rubygems/specification.rb --> # The Specification class contains the information for a gem. Typically defined # in a .gemspec file or a Rakefile, and looks like this: # # Gem::Specification.new do |s| # s.name = 'example' # s.version = '0.1.0' # s.licenses = ['MIT'] # s.summary = "This is an example!" # s.description = "Much longer explanation of the example!" # s.authors = ["Ruby Coder"] # s.email = 'rubycoder@example.com' # s.files = ["lib/example.rb"] # s.homepage = 'https://rubygems.org/gems/example' # s.metadata = { "source_code_uri" => "https://github.com/example/example" } # end # # Starting in RubyGems 2.0, a Specification can hold arbitrary metadata. See # #metadata for restrictions on the format and size of metadata items you may # add to a specification. # class Gem::Specification < Gem::BasicSpecification end
Version data entries
63 entries across 63 versions & 2 rubygems