public
Rubygem
Description: Ruby/Git is a Ruby library that can be used to create, read and manipulate Git repositories by wrapping system calls to the git binary.
Homepage: http://jointheconversation.org/rubygit/
Clone URL: git://github.com/schacon/ruby-git.git
Search Repo:
updated gem specs and updated TODO file
schacon (author)
Mon May 12 20:42:45 -0700 2008
commit  0f1baf67e26092797e4a84804469cb1391546708
tree    696064e78710d2467403f2b52e8c03135b70be88
parent  7df710fdb2e9b6376b3201ac6dee9ea6524f6e5f
...
1
 
...
1
2
0
@@ -1,2 +1,3 @@
0
 *.kpf
0
+pkg/*
...
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 
19
20
21
...
2
3
4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
6
7
8
0
@@ -2,20 +2,7 @@
0
 Gem::manage_gems
0
 require 'rake/gempackagetask'
0
 
0
-spec = Gem::Specification.new do |s|
0
- s.platform = Gem::Platform::RUBY
0
- s.name = "git"
0
- s.version = "1.0.5"
0
- s.author = "Scott Chacon"
0
- s.email = "schacon@gmail.com"
0
- s.summary = "A package for using Git in Ruby code."
0
- s.files = FileList['lib/**/*', 'tests/**/*', 'doc/**/*'].to_a
0
- s.require_path = "lib"
0
- s.autorequire = "git"
0
- s.test_files = Dir.glob('tests/*.rb')
0
- s.has_rdoc = true
0
- s.extra_rdoc_files = ["README"]
0
-end
1
+spec = eval(File.read('ticgit.gemspec'))
0
 
0
 Rake::GemPackageTask.new(spec) do |pkg|
0
     pkg.need_tar = true
0
...
1
2
 
3
4
5
6
7
8
9
10
11
12
13
 
14
15
16
...
1
2
3
4
 
 
5
6
7
 
8
9
10
 
11
12
13
14
0
@@ -1,16 +1,14 @@
0
 * more documentation
0
 
0
+* git revert, rebase
0
 
0
-* git revert, stash, rebase
0
-
0
 * diff additions
0
   - annotate, blame
0
 
0
-
0
 * submodule support
0
 
0
 * repository admin
0
- - prune, fsck, pack-refs, gc, count-objects, unpack-objects
0
+ - prune, fsck, pack-refs, , count-objects, unpack-objects
0
 
0
 * email/patch integration
0
   - request-pull(email_address), git-am, git-apply
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
1
@@ -1 +1,15 @@
0
+spec = Gem::Specification.new do |s|
0
+ s.platform = Gem::Platform::RUBY
0
+ s.name = "git"
0
+ s.version = "1.0.6"
0
+ s.author = "Scott Chacon"
0
+ s.email = "schacon@gmail.com"
0
+ s.summary = "A package for using Git in Ruby code."
0
+ 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"]
0
+ s.require_path = "lib"
0
+ s.autorequire = "git"
0
+ s.test_files = Dir.glob('tests/*.rb')
0
+ s.has_rdoc = true
0
+ s.extra_rdoc_files = ["README"]
0
+end

Comments

  • elliottcable Fri May 16 16:37:38 -0700 2008 at ruby-git.gemspec

    Uhm. Could you enable the GitHub rubygem building feature? I spent 10 minutes trying to figure out why I was getting `ERROR: could not find schacon-ruby-git locally or in a repository`, hehe (-:

  • hectoregm Thu May 22 07:40:56 -0700 2008 at Rakefile L19

    There is no ticgit.gemspec, is this a typo?

  • reactrix Thu May 22 15:41:43 -0700 2008

    d’oh – thanks hectoregm, I got it mixed up with one of my other projects. Thanks.

  • schacon Thu May 22 15:44:55 -0700 2008

    k – this is fixed now, thanks both of you.