forked from libgit2/rugged
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrugged.gemspec
28 lines (27 loc) · 1.31 KB
/
rugged.gemspec
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
$:.push File.expand_path("../lib", __FILE__)
require '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 = "schacon@gmail.com"
s.authors = [ "Scott Chacon", "Vicent Marti" ]
s.license = "MIT"
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/**/*.[ch]")
s.files += Dir.glob("vendor/libgit2/{include,src,deps}/**/*.[ch]")
s.files += Dir.glob("vendor/libgit2/Makefile.embed")
s.extensions = ['ext/rugged/extconf.rb']
s.required_ruby_version = '>= 1.9.3'
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
s.add_development_dependency "rake-compiler"
s.add_development_dependency "minitest", "~> 3.0.0"
end