diff --git a/README.rdoc b/README.rdoc deleted file mode 100644 index 4a7a521..0000000 --- a/README.rdoc +++ /dev/null @@ -1,18 +0,0 @@ -= gemcov - -Description goes here. - -== Contributing to gemcov - -* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet -* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it -* Fork the project -* Start a feature/bugfix branch -* Commit and push until you are happy with your contribution -* Make sure to add tests for it. This is important so I don't break it in a future version unintentionally. -* Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it. - -== Copyright - -Copyright (c) 2011 Tom Porter. See LICENSE.txt for -further details. diff --git a/Rakefile b/Rakefile index 9331de8..0162aa7 100644 --- a/Rakefile +++ b/Rakefile @@ -14,11 +14,11 @@ require 'rake' require 'jeweler' Jeweler::Tasks.new do |gem| # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options - gem.name = "gc" + gem.name = "gemcov" gem.homepage = "http://github.com/tomPorter/gemset_coverage" gem.license = "MIT" - gem.summary = %Q{TODO: one-line summary of your gem} - gem.description = %Q{TODO: longer description of your gem} + gem.summary = %Q{gemcov allows inspection of all defined gemsets and the gems in them.} + gem.description = %Q{gemcov allows inspection of all defined gemsets and the gems in them. Helps answer "Where do I have the 'foobar' gem installed?"} gem.email = "tom.porter@solutionset.com" gem.authors = ["Tom Porter"] # dependencies defined in Gemfile diff --git a/gemcov.gemspec b/gemcov.gemspec new file mode 100644 index 0000000..4c79379 --- /dev/null +++ b/gemcov.gemspec @@ -0,0 +1,67 @@ +# Generated by jeweler +# DO NOT EDIT THIS FILE DIRECTLY +# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec' +# -*- encoding: utf-8 -*- + +Gem::Specification.new do |s| + s.name = %q{gemcov} + s.version = "0.0.0" + + s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= + s.authors = ["Tom Porter"] + s.date = %q{2011-07-28} + s.default_executable = %q{gemcov} + s.description = %q{gemcov allows inspection of all defined gemsets and the gems in them. Helps answer "Where do I have the 'foobar' gem installed?"} + s.email = %q{tom.porter@solutionset.com} + s.executables = ["gemcov"] + s.extra_rdoc_files = [ + "LICENSE.txt", + "README.md" + ] + s.files = [ + ".rspec", + ".rvmrc", + "Gemfile", + "History.txt", + "LICENSE.txt", + "README.md", + "Rakefile", + "VERSION", + "bin/gemcov", + "lib/gemcov.rb", + "spec/gemcoverageentry_spec.rb", + "spec/gemhash_spec.rb", + "spec/gemlisting_spec.rb", + "spec/spec_helper.rb" + ] + s.homepage = %q{http://github.com/tomPorter/gemset_coverage} + s.licenses = ["MIT"] + s.require_paths = ["lib"] + s.rubygems_version = %q{1.6.2} + s.summary = %q{gemcov allows inspection of all defined gemsets and the gems in them.} + + if s.respond_to? :specification_version then + s.specification_version = 3 + + if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then + s.add_development_dependency(%q, [">= 2.3.0"]) + s.add_development_dependency(%q, [">= 0.6.0"]) + s.add_development_dependency(%q, [">= 1.0.0"]) + s.add_development_dependency(%q, [">= 1.6.4"]) + s.add_development_dependency(%q, [">= 0"]) + else + s.add_dependency(%q, [">= 2.3.0"]) + s.add_dependency(%q, [">= 0.6.0"]) + s.add_dependency(%q, [">= 1.0.0"]) + s.add_dependency(%q, [">= 1.6.4"]) + s.add_dependency(%q, [">= 0"]) + end + else + s.add_dependency(%q, [">= 2.3.0"]) + s.add_dependency(%q, [">= 0.6.0"]) + s.add_dependency(%q, [">= 1.0.0"]) + s.add_dependency(%q, [">= 1.6.4"]) + s.add_dependency(%q, [">= 0"]) + end +end +