Skip to content

Commit

Permalink
Added gemspec. Removed README.rdoc since README.md is used. Updated R…
Browse files Browse the repository at this point in the history
…akefile to populate data for gemspec.
  • Loading branch information
David Czarnecki committed Jul 28, 2011
1 parent 8a1eeb1 commit 4c9efa3
Show file tree
Hide file tree
Showing 3 changed files with 70 additions and 21 deletions.
18 changes: 0 additions & 18 deletions README.rdoc

This file was deleted.

6 changes: 3 additions & 3 deletions Rakefile
Expand Up @@ -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
Expand Down
67 changes: 67 additions & 0 deletions 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<rspec>, [">= 2.3.0"])
s.add_development_dependency(%q<yard>, [">= 0.6.0"])
s.add_development_dependency(%q<bundler>, [">= 1.0.0"])
s.add_development_dependency(%q<jeweler>, [">= 1.6.4"])
s.add_development_dependency(%q<rcov>, [">= 0"])
else
s.add_dependency(%q<rspec>, [">= 2.3.0"])
s.add_dependency(%q<yard>, [">= 0.6.0"])
s.add_dependency(%q<bundler>, [">= 1.0.0"])
s.add_dependency(%q<jeweler>, [">= 1.6.4"])
s.add_dependency(%q<rcov>, [">= 0"])
end
else
s.add_dependency(%q<rspec>, [">= 2.3.0"])
s.add_dependency(%q<yard>, [">= 0.6.0"])
s.add_dependency(%q<bundler>, [">= 1.0.0"])
s.add_dependency(%q<jeweler>, [">= 1.6.4"])
s.add_dependency(%q<rcov>, [">= 0"])
end
end

0 comments on commit 4c9efa3

Please sign in to comment.