Skip to content

Commit

Permalink
updated gem specs and updated TODO file
Browse files Browse the repository at this point in the history
  • Loading branch information
schacon committed May 13, 2008
1 parent 7df710f commit 0f1baf6
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
*.kpf
*.kpf
pkg/*
15 changes: 1 addition & 14 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "[email protected]"
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
Expand Down
6 changes: 2 additions & 4 deletions TODO
Original file line number Diff line number Diff line change
@@ -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
Expand Down
14 changes: 14 additions & 0 deletions ruby-git.gemspec
Original file line number Diff line number Diff line change
@@ -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 = "[email protected]"
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

0 comments on commit 0f1baf6

Please sign in to comment.