Sha256: 7ab3a5ae2b7f5a281f200c08dc041ca7b4cb427a67db202c57ad3a464c32ffb5
Contents?: true
Size: 759 Bytes
Versions: 1
Compression:
Stored size: 759 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "teachmehowtomakearubygem/version" Gem::Specification.new do |s| s.name = "teachmehowtomakearubygem" s.version = Teachmehowtomakearubygem::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Steve Klabnik"] s.email = ["steve@steveklabnik.com"] s.homepage = "" s.summary = %q{This shows you how to make a gem} s.description = %q{This shows you how to make a gem} s.add_dependency "launchy" s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
teachmehowtomakearubygem-0.0.1 | teachmehowtomakearubygem.gemspec |