forked from libgit2/rugged
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrugged.gemspec
22 lines (21 loc) · 1009 Bytes
/
rugged.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require './lib/rugged/version'
Gem::Specification.new do |s|
s.name = "rugged"
s.version = Rugged::Version
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = "Rugged is a Ruby binding to the libgit2 linkable library"
s.homepage = "http://github.com/libgit2/rugged"
s.email = "[email protected]"
s.authors = [ "Scott Chacon", "Vicent Marti" ]
s.files = %w( README.md Rakefile LICENSE )
s.files += Dir.glob("lib/**/*.rb")
s.files += Dir.glob("man/**/*")
s.files += Dir.glob("test/**/*")
s.files += Dir.glob("ext/**/*.c") + Dir.glob("ext/**/*.h")
s.files += ['ext/rugged/vendor/libgit2-dist.tar.gz']
s.extensions = ['ext/rugged/extconf.rb']
s.description = <<desc
Rugged is a Ruby bindings to the libgit2 linkable C Git library. This is
for testing and using the libgit2 library in a language that is awesome.
desc
end