rbind 0.0.10 → 0.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/rbind/templates/c/cmake/FindGem.cmake +2 -2
- data/rbind.gemspec +9 -4
- metadata +28 -19
@@ -111,10 +111,10 @@ foreach(Gem_NAME ${Gem_FIND_COMPONENTS})
|
|
111
111
|
endforeach()
|
112
112
|
|
113
113
|
# Compact the lists
|
114
|
-
if(
|
114
|
+
if(DEFINED GEM_LIBRARIES)
|
115
115
|
LIST(REMOVE_DUPLICATES GEM_LIBRARIES)
|
116
116
|
endif()
|
117
|
-
if(
|
117
|
+
if(DEFINED GEM_INCLUDE_DIRS)
|
118
118
|
LIST(REMOVE_DUPLICATES GEM_INCLUDE_DIRS)
|
119
119
|
endif()
|
120
120
|
endif()
|
data/rbind.gemspec
CHANGED
@@ -1,13 +1,18 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'rbind'
|
3
|
-
s.version = '0.0.
|
4
|
-
s.date = '2013-07-
|
3
|
+
s.version = '0.0.11'
|
4
|
+
s.date = '2013-07-03'
|
5
5
|
s.platform = Gem::Platform::RUBY
|
6
6
|
s.authors = ['Alexander Duda']
|
7
7
|
s.email = ['Alexander.Duda@dfki.de']
|
8
|
-
s.homepage = 'http://github.com/'
|
8
|
+
s.homepage = 'http://github.com/D-Alex/rbind'
|
9
9
|
s.summary = 'Library for genereating automated ffi-bindings for c/c++ libraries'
|
10
|
-
s.description = ''
|
10
|
+
s.description = 'Rbind is developed to automatically generate ruby bindings for OpenCV '\
|
11
|
+
'but is not tight to this library. It allows to import already wrapped types '\
|
12
|
+
'from other gems/libraries using rbind to share the same types accross '\
|
13
|
+
'mulltiple gems/libraries. For now rbind uses a copy of the OpenCV python hdr_parser '\
|
14
|
+
'to parse c/c++ header files and looks for certain defines. '\
|
15
|
+
'This gem is still under heavy development and the api might change in the future.'
|
11
16
|
s.files = `git ls-files`.split("\n")
|
12
17
|
s.require_path = 'lib'
|
13
18
|
s.required_rubygems_version = ">= 1.3.6"
|
metadata
CHANGED
@@ -1,23 +1,28 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: rbind
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.10
|
3
|
+
version: !ruby/object:Gem::Version
|
5
4
|
prerelease:
|
5
|
+
version: 0.0.11
|
6
6
|
platform: ruby
|
7
|
-
authors:
|
7
|
+
authors:
|
8
8
|
- Alexander Duda
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
|
12
|
+
|
13
|
+
date: 2013-07-03 00:00:00 Z
|
13
14
|
dependencies: []
|
14
|
-
|
15
|
-
|
15
|
+
|
16
|
+
description: Rbind is developed to automatically generate ruby bindings for OpenCV but is not tight to this library. It allows to import already wrapped types from other gems/libraries using rbind to share the same types accross mulltiple gems/libraries. For now rbind uses a copy of the OpenCV python hdr_parser to parse c/c++ header files and looks for certain defines. This gem is still under heavy development and the api might change in the future.
|
17
|
+
email:
|
16
18
|
- Alexander.Duda@dfki.de
|
17
19
|
executables: []
|
20
|
+
|
18
21
|
extensions: []
|
22
|
+
|
19
23
|
extra_rdoc_files: []
|
20
|
-
|
24
|
+
|
25
|
+
files:
|
21
26
|
- lib/rbind.rb
|
22
27
|
- lib/rbind/core.rb
|
23
28
|
- lib/rbind/core/.roperation.rb.swp
|
@@ -71,28 +76,32 @@ files:
|
|
71
76
|
- lib/rbind/tools/hdr_parser.py
|
72
77
|
- rbind.gemspec
|
73
78
|
- test/test_generator_ruby.rb
|
74
|
-
homepage: http://github.com/
|
79
|
+
homepage: http://github.com/D-Alex/rbind
|
75
80
|
licenses: []
|
81
|
+
|
76
82
|
post_install_message:
|
77
83
|
rdoc_options: []
|
78
|
-
|
84
|
+
|
85
|
+
require_paths:
|
79
86
|
- lib
|
80
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
87
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
81
88
|
none: false
|
82
|
-
requirements:
|
83
|
-
- -
|
84
|
-
- !ruby/object:Gem::Version
|
85
|
-
version:
|
86
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
89
|
+
requirements:
|
90
|
+
- - ">="
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: "0"
|
93
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
87
94
|
none: false
|
88
|
-
requirements:
|
89
|
-
- -
|
90
|
-
- !ruby/object:Gem::Version
|
95
|
+
requirements:
|
96
|
+
- - ">="
|
97
|
+
- !ruby/object:Gem::Version
|
91
98
|
version: 1.3.6
|
92
99
|
requirements: []
|
100
|
+
|
93
101
|
rubyforge_project:
|
94
102
|
rubygems_version: 1.8.23
|
95
103
|
signing_key:
|
96
104
|
specification_version: 3
|
97
105
|
summary: Library for genereating automated ffi-bindings for c/c++ libraries
|
98
106
|
test_files: []
|
107
|
+
|