Skip to content

Commit

Permalink
bump the gem version
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewrudy committed Apr 13, 2010
1 parent cf018e9 commit 8690a4c
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec = Gem::Specification.new do |s|

# Change these as appropriate
s.name = "rcov_rails"
s.version = "0.1.7"
s.version = "0.1.8"
s.description = "One Rake task to give you rcov code coverage for your rails app. rake test:coverage"
s.summary = "Ruby, Rails, Rcov put together into a single neat Rake task"
s.author = "Matthew Rudy Jacobs"
Expand Down
32 changes: 32 additions & 0 deletions rcov_rails.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
s.name = %q{rcov_rails}
s.version = "0.1.8"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Matthew Rudy Jacobs"]
s.date = %q{2010-04-13}
s.description = %q{One Rake task to give you rcov code coverage for your rails app. rake test:coverage}
s.email = %q{matthewrudyjacobs@gmail.com}
s.extra_rdoc_files = ["README"]
s.files = ["MIT-LICENSE", "README", "lib/rcov_rails", "lib/rcov_rails/railtie.rb", "lib/rcov_rails/rcovtask.rb", "lib/rcov_rails.rb", "lib/tasks", "lib/tasks/coverage.rake"]
s.homepage = %q{http://github.com/matthewrudy/rcov_rails}
s.rdoc_options = ["--main", "README"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.6}
s.summary = %q{Ruby, Rails, Rcov put together into a single neat Rake task}

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<rcov>, [">= 0"])
else
s.add_dependency(%q<rcov>, [">= 0"])
end
else
s.add_dependency(%q<rcov>, [">= 0"])
end
end

0 comments on commit 8690a4c

Please sign in to comment.