summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitignore3
-rw-r--r--Rakefile15
-rw-r--r--TODO6
-rw-r--r--ruby-git.gemspec14
4 files changed, 19 insertions, 19 deletions
diff --git a/.gitignore b/.gitignore
index 549ba1a..7fe215f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
-*.kpf \ No newline at end of file
+*.kpf
+pkg/*
diff --git a/Rakefile b/Rakefile
index cc744c1..c4b1206 100644
--- a/Rakefile
+++ b/Rakefile
@@ -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
diff --git a/TODO b/TODO
index c39db6b..79694fa 100644
--- a/TODO
+++ b/TODO
@@ -1,16 +1,14 @@
* more documentation
-
-* git revert, stash, rebase
+* git revert, rebase
* diff additions
- annotate, blame
-
* submodule support
* repository admin
- - prune, fsck, pack-refs, gc, count-objects, unpack-objects
+ - prune, fsck, pack-refs, count-objects, unpack-objects
* email/patch integration
- request-pull(email_address), git-am, git-apply
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