We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b86cbd6 commit 1455f9aCopy full SHA for 1455f9a
Rakefile
@@ -1,18 +1,19 @@
1
require 'rubygems'
2
-require 'rake/gempackagetask'
3
4
begin
5
require 'jeweler'
6
Jeweler::Tasks.new do |gem|
7
gem.name = "git"
8
- gem.summary = %Q{TODO}
+ 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}
9
gem.email = "schacon@gmail.com"
10
gem.homepage = "http://github.com/schacon/ruby-git"
11
gem.authors = "Scott Chacon"
12
gem.rubyforge_project = "git"
13
gem.files = FileList["lib/**/*.rb"]
14
gem.test_files = FileList["test/*.rb"]
15
gem.extra_rdoc_files = ["README"]
+ gem.requirements << 'git 1.6.0.0, or greater'
16
+
17
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
18
end
19
rescue LoadError
0 commit comments