-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrbind.gemspec
19 lines (18 loc) · 934 Bytes
/
rbind.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Gem::Specification.new do |s|
s.name = 'rbind'
s.version = '0.0.34'
s.date = '2022-06-18'
s.platform = Gem::Platform::RUBY
s.authors = ['Alexander Duda']
s.email = ['[email protected]']
s.homepage = 'http://github.com/D-Alex/rbind'
s.summary = 'Library for genereating automated ffi-bindings for c/c++ libraries'
s.description = 'Rbind is developed to automatically generate ruby bindings for OpenCV '\
'but is not tight to this library.'\
'This gem is still under heavy development and the API might change in the future.'
s.files = `git ls-files`.split("\n")
s.require_path = 'lib'
s.required_rubygems_version = ">= 1.3.6"
s.add_runtime_dependency 'ffi', '~> 1.9', '>= 1.9.0'
#s.rubyforge_project = s.name
end