forked from ruby-git/ruby-git
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruby-git.gemspec
More file actions
Latest commit
15 lines (15 loc) · 891 Bytes
/
Copy pathruby-git.gemspec
File metadata and controls
15 lines (15 loc) · 891 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
spec=Gem::Specification.newdo |s|
s.platform=Gem::Platform::RUBY
s.name="git"
s.version="1.1.1"
s.author="Scott Chacon"
s.email="schacon@gmail.com"
s.homepage="http://github.com/schacon/ruby-git/tree/master"
s.summary="A package for using Git in Ruby code."
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/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"]
s.require_path="lib"
s.autorequire="git"
s.test_files=Dir.glob('tests/*.rb')
s.has_rdoc=true
s.extra_rdoc_files=["README"]
end