summaryrefslogtreecommitdiffstats
path: root/ruby-git.gemspec
diff options
context:
space:
mode:
authorScott Chacon <schacon@gmail.com>2008-05-12 20:42:45 -0700
committerScott Chacon <schacon@gmail.com>2008-05-12 20:42:45 -0700
commit0f1baf67e26092797e4a84804469cb1391546708 (patch)
tree696064e78710d2467403f2b52e8c03135b70be88 /ruby-git.gemspec
parent7df710fdb2e9b6376b3201ac6dee9ea6524f6e5f (diff)
downloadthird_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 'ruby-git.gemspec')
-rw-r--r--ruby-git.gemspec14
1 files changed, 14 insertions, 0 deletions
diff --git a/ruby-git.gemspec b/ruby-git.gemspec
new file mode 100644
index 0000000..7638d3a
--- /dev/null
+++ b/ruby-git.gemspec
@@ -0,0 +1,14 @@
+spec = Gem::Specification.new do |s|
+ s.platform = Gem::Platform::RUBY
+ s.name = "git"
+ s.version = "1.0.6"
+ s.author = "Scott Chacon"
+ s.email = "schacon@gmail.com"
+ s.summary = "A package for using Git in Ruby code."
+ s.files = ["lib/git", "lib/git/author.rb", "lib/git/base.rb", "lib/git/branch.rb", "lib/git/branches.rb", "lib/git/diff.rb", "lib/git/index.rb", "lib/git/lib.rb", "lib/git/lib.rb.orig", "lib/git/log.rb", "lib/git/object.rb", "lib/git/path.rb", "lib/git/remote.rb", "lib/git/repository.rb", "lib/git/stash.rb", "lib/git/stashes.rb", "lib/git/status.rb", "lib/git/working_directory.rb", "lib/git.rb"]
+ s.require_path = "lib"
+ s.autorequire = "git"
+ s.test_files = Dir.glob('tests/*.rb')
+ s.has_rdoc = true
+ s.extra_rdoc_files = ["README"]
+end