public
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:
Clone URL: git://github.com/schacon/ruby-git.git
ruby-git / git.gemspec
100644 54 lines (49 sloc) 1.56 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Generated by jeweler
# DO NOT EDIT THIS FILE
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
# -*- encoding: utf-8 -*-
 
Gem::Specification.new do |s|
  s.name = %q{git}
  s.version = "1.2.5"
 
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Scott Chacon"]
  s.date = %q{2009-10-17}
  s.email = %q{schacon@gmail.com}
  s.extra_rdoc_files = [
    "README"
  ]
  s.files = [
    "lib/git.rb",
     "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/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"
  ]
  s.homepage = %q{http://github.com/schacon/ruby-git}
  s.rdoc_options = ["--charset=UTF-8"]
  s.require_paths = ["lib"]
  s.requirements = ["git 1.6.0.0, or greater"]
  s.rubyforge_project = %q{git}
  s.rubygems_version = %q{1.3.5}
  s.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}
 
  if s.respond_to? :specification_version then
    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
    s.specification_version = 3
 
    if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
    else
    end
  else
  end
end