summaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorscott Chacon <schacon@agadorsparticus.corp.reactrix.com>2007-11-12 10:55:39 -0800
committerscott Chacon <schacon@agadorsparticus.corp.reactrix.com>2007-11-12 10:55:39 -0800
commit32fbe703605310c91677225442a62ae0869d0892 (patch)
tree00c2b73a07e1200e097490c1fa7d6b5a77fa2032 /Rakefile
parent646304a6e7c3b2c442a0a7db995629e7009c3a14 (diff)
downloadthird_party-ruby-git-32fbe703605310c91677225442a62ae0869d0892.tar.gz
third_party-ruby-git-32fbe703605310c91677225442a62ae0869d0892.tar.xz
third_party-ruby-git-32fbe703605310c91677225442a62ae0869d0892.zip
added push, changed some docs, merged README and EXAMPLES, fixed the Rake tasks to build a proper gem
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile6
1 files changed, 3 insertions, 3 deletions
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"