Skip to content

Commit 1455f9a

Browse files
Added a real summary, and a requirement on git 1.6.0.0 to gemspec.
1 parent b86cbd6 commit 1455f9a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Rakefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
require 'rubygems'
2-
require 'rake/gempackagetask'
32

43
begin
54
require 'jeweler'
65
Jeweler::Tasks.new do |gem|
76
gem.name = "git"
8-
gem.summary = %Q{TODO}
7+
gem.summary = %Q{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}
98
gem.email = "schacon@gmail.com"
109
gem.homepage = "http://github.com/schacon/ruby-git"
1110
gem.authors = "Scott Chacon"
1211
gem.rubyforge_project = "git"
1312
gem.files = FileList["lib/**/*.rb"]
1413
gem.test_files = FileList["test/*.rb"]
1514
gem.extra_rdoc_files = ["README"]
15+
gem.requirements << 'git 1.6.0.0, or greater'
16+
1617
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
1718
end
1819
rescue LoadError

0 commit comments

Comments
 (0)