diff options
| author | Scott Chacon <schacon@gmail.com> | 2008-05-12 20:42:45 -0700 |
|---|---|---|
| committer | Scott Chacon <schacon@gmail.com> | 2008-05-12 20:42:45 -0700 |
| commit | 0f1baf67e26092797e4a84804469cb1391546708 (patch) | |
| tree | 696064e78710d2467403f2b52e8c03135b70be88 /Rakefile | |
| parent | 7df710fdb2e9b6376b3201ac6dee9ea6524f6e5f (diff) | |
| download | third_party-ruby-git-0f1baf67e26092797e4a84804469cb1391546708.tar.gz third_party-ruby-git-0f1baf67e26092797e4a84804469cb1391546708.tar.xz third_party-ruby-git-0f1baf67e26092797e4a84804469cb1391546708.zip | |
updated gem specs and updated TODO file
Diffstat (limited to 'Rakefile')
| -rw-r--r-- | Rakefile | 15 |
1 files changed, 1 insertions, 14 deletions
@@ -2,20 +2,7 @@ require 'rubygems' Gem::manage_gems require 'rake/gempackagetask' -spec = Gem::Specification.new do |s| - s.platform = Gem::Platform::RUBY - s.name = "git" - s.version = "1.0.5" - s.author = "Scott Chacon" - s.email = "schacon@gmail.com" - s.summary = "A package for using Git in Ruby code." - s.files = FileList['lib/**/*', 'tests/**/*', 'doc/**/*'].to_a - s.require_path = "lib" - s.autorequire = "git" - s.test_files = Dir.glob('tests/*.rb') - s.has_rdoc = true - s.extra_rdoc_files = ["README"] -end +spec = eval(File.read('ticgit.gemspec')) Rake::GemPackageTask.new(spec) do |pkg| pkg.need_tar = true |
