From 32fbe703605310c91677225442a62ae0869d0892 Mon Sep 17 00:00:00 2001 From: scott Chacon Date: Mon, 12 Nov 2007 10:55:39 -0800 Subject: added push, changed some docs, merged README and EXAMPLES, fixed the Rake tasks to build a proper gem --- Rakefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Rakefile') diff --git a/Rakefile b/Rakefile index fd93a28..6cc6eef 100644 --- a/Rakefile +++ b/Rakefile @@ -5,11 +5,11 @@ require 'rake/gempackagetask' spec = Gem::Specification.new do |s| s.platform = Gem::Platform::RUBY s.name = "git" - s.version = "1.0.0" + s.version = "1.0.1" s.author = "Scott Chacon" s.email = "schacon@gmail.com" s.summary = "A package for using Git in Ruby code." - s.files = FileList['lib/*.rb', 'test/*'].to_a + s.files = FileList['lib/**/*', 'tests/**/*', 'doc/**/*'].to_a s.require_path = "lib" s.autorequire = "git" s.test_files = Dir.glob('tests/*.rb') @@ -27,7 +27,7 @@ end desc "Regenerate Documentation" task :doc do |t| - system('rdoc lib/ README EXAMPLES --main README --inline-source') + system('rdoc lib/ README --main README --inline-source') end desc "Run Unit Tests" -- cgit