Skip to content

Commit 0f1baf6

Browse files
committed
updated gem specs and updated TODO file
1 parent 7df710f commit 0f1baf6

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
*.kpf
1+
*.kpf
2+
pkg/*

Rakefile

+1-14
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,7 @@ require 'rubygems'
22
Gem::manage_gems
33
require 'rake/gempackagetask'
44

5-
spec = Gem::Specification.new do |s|
6-
s.platform = Gem::Platform::RUBY
7-
s.name = "git"
8-
s.version = "1.0.5"
9-
s.author = "Scott Chacon"
10-
s.email = "schacon@gmail.com"
11-
s.summary = "A package for using Git in Ruby code."
12-
s.files = FileList['lib/**/*', 'tests/**/*', 'doc/**/*'].to_a
13-
s.require_path = "lib"
14-
s.autorequire = "git"
15-
s.test_files = Dir.glob('tests/*.rb')
16-
s.has_rdoc = true
17-
s.extra_rdoc_files = ["README"]
18-
end
5+
spec = eval(File.read('ticgit.gemspec'))
196

207
Rake::GemPackageTask.new(spec) do |pkg|
218
pkg.need_tar = true

TODO

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
* more documentation
22

3-
4-
* git revert, stash, rebase
3+
* git revert, rebase
54

65
* diff additions
76
- annotate, blame
87

9-
108
* submodule support
119

1210
* repository admin
13-
- prune, fsck, pack-refs, gc, count-objects, unpack-objects
11+
- prune, fsck, pack-refs, count-objects, unpack-objects
1412

1513
* email/patch integration
1614
- request-pull(email_address), git-am, git-apply

ruby-git.gemspec

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
spec = Gem::Specification.new do |s|
2+
s.platform = Gem::Platform::RUBY
3+
s.name = "git"
4+
s.version = "1.0.6"
5+
s.author = "Scott Chacon"
6+
s.email = "schacon@gmail.com"
7+
s.summary = "A package for using Git in Ruby code."
8+
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"]
9+
s.require_path = "lib"
10+
s.autorequire = "git"
11+
s.test_files = Dir.glob('tests/*.rb')
12+
s.has_rdoc = true
13+
s.extra_rdoc_files = ["README"]
14+
end

0 commit comments

Comments
 (0)