-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathffi-clang.gemspec
28 lines (19 loc) · 1.05 KB
/
ffi-clang.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
# frozen_string_literal: true
require_relative "lib/ffi/clang/version"
Gem::Specification.new do |spec|
spec.name = "ffi-clang"
spec.version = FFI::Clang::VERSION
spec.summary = "Ruby FFI bindings for libclang C interface."
spec.authors = ["Samuel Williams", "Masahiro Sano", "Carlos Martín Nieto", "Charlie Savage", "Jari Bakken", "Takeshi Watanabe", "Garry Marshall", "George Pimm", "Zete Lui", "Greg Hazel", "Michael Metivier", "Dave Wilkinson", "Hayden Purdy", "Mike Dalessio", "Motonori Iwamuro", "Niklas Therning", "Cameron Dutro", "Dominic Sisnero", "Hal Brodigan"]
spec.license = "MIT"
spec.cert_chain = ['release.cert']
spec.signing_key = File.expand_path('~/.gem/release.pem')
spec.homepage = "https://github.com/ioquatix/ffi-clang"
spec.metadata = {
"funding_uri" => "https://github.com/sponsors/ioquatix/",
"source_code_uri" => "https://github.com/ioquatix/ffi-clang.git",
}
spec.files = Dir.glob(['{ext,lib}/**/*', '*.md'], File::FNM_DOTMATCH, base: __dir__)
spec.required_ruby_version = ">= 3.1"
spec.add_dependency "ffi"
end