Uh oh!
There was an error while loading. Please reload this page.
forked from ruby-git/ruby-git
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgit.gemspec
More file actions
Latest commit
52 lines (47 loc) · 1.47 KB
/
Copy pathgit.gemspec
File metadata and controls
52 lines (47 loc) · 1.47 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
$LOAD_PATH.unshiftFile.expand_path('../lib',__FILE__)
require'git/version'
Gem::Specification.newdo |s|
s.author='Scott Chacon and others'
s.email='schacon@gmail.com'
s.homepage='http://github.com/ruby-git/ruby-git'
s.license='MIT'
s.name='git'
s.summary='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.'
s.version=Git::VERSION
s.require_paths=['lib']
s.required_ruby_version='>= 1.9'
s.required_rubygems_version=Gem::Requirement.new('>= 0')ifs.respond_to?(:required_rubygems_version=)
s.requirements=['git 1.6.0.0, or greater']
s.add_development_dependency'rake'
s.add_development_dependency'rdoc'
s.add_development_dependency'test-unit','>=2','< 4'
s.extra_rdoc_files=['README.md']
s.rdoc_options=['--charset=UTF-8']
s.files=[
'CHANGELOG.md',
'CONTRIBUTING.md',
'MAINTAINERS.md',
'LICENSE',
'README.md',
'lib/git.rb',
'lib/git/author.rb',
'lib/git/base.rb',
'lib/git/base/factory.rb',
'lib/git/branch.rb',
'lib/git/branches.rb',
'lib/git/config.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/version.rb',
'lib/git/working_directory.rb'
]
end