rbplusplus 1.2.1 → 1.3.0
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.
- checksums.yaml +4 -4
- metadata +27 -27
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 64998377ef64e53b53ac16ef3e58f12b774ef4eb
|
|
4
|
+
data.tar.gz: a81d11259a71875f068793bc6596c27f8c9e0f6d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 04983a3329b555383e52e5736276804fdd288559a5553234566e1d72b46a95e89d47b650d1f17e64b09e6b24a86e15c2e0369d06218b21b9cefd97ec94b47307
|
|
7
|
+
data.tar.gz: fd928903087c72d024a72df13ec8253549655a218f144155a2ca120b33b0455214c9c343d3c1e4634e5a0613ebb04232ad0ebebef53602d4c7bfaa438e432239
|
metadata
CHANGED
|
@@ -1,43 +1,43 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rbplusplus
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jason Roelofs
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-05-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rbgccxml
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - ~>
|
|
17
|
+
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 1.0
|
|
19
|
+
version: '1.0'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- - ~>
|
|
24
|
+
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 1.0
|
|
26
|
+
version: '1.0'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: rice
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
|
-
- - ~>
|
|
31
|
+
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 1
|
|
33
|
+
version: '2.1'
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
|
-
- - ~>
|
|
38
|
+
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 1
|
|
40
|
+
version: '2.1'
|
|
41
41
|
description: |
|
|
42
42
|
Rb++ combines the powerful query interface of rbgccxml and the Rice library to
|
|
43
43
|
make Ruby wrapping extensions of C++ libraries easier to write than ever.
|
|
@@ -46,11 +46,12 @@ executables: []
|
|
|
46
46
|
extensions: []
|
|
47
47
|
extra_rdoc_files: []
|
|
48
48
|
files:
|
|
49
|
-
- TODO
|
|
50
49
|
- Rakefile
|
|
50
|
+
- TODO
|
|
51
51
|
- lib/inflections.rb
|
|
52
52
|
- lib/inflector.rb
|
|
53
53
|
- lib/jamis.rb
|
|
54
|
+
- lib/rbplusplus.rb
|
|
54
55
|
- lib/rbplusplus/builders/allocation_strategy.rb
|
|
55
56
|
- lib/rbplusplus/builders/base.rb
|
|
56
57
|
- lib/rbplusplus/builders/class.rb
|
|
@@ -89,7 +90,6 @@ files:
|
|
|
89
90
|
- lib/rbplusplus/writers/extension.rb
|
|
90
91
|
- lib/rbplusplus/writers/multiple_files_writer.rb
|
|
91
92
|
- lib/rbplusplus/writers/single_file_writer.rb
|
|
92
|
-
- lib/rbplusplus.rb
|
|
93
93
|
- test/allocation_strategies_test.rb
|
|
94
94
|
- test/class_methods_encapsulate_test.rb
|
|
95
95
|
- test/class_methods_test.rb
|
|
@@ -105,19 +105,9 @@ files:
|
|
|
105
105
|
- test/function_pointer_test.rb
|
|
106
106
|
- test/function_pointers_classes_test.rb
|
|
107
107
|
- test/functions_test.rb
|
|
108
|
-
- test/implicit_cast_test.rb
|
|
109
|
-
- test/include_source_dir_test.rb
|
|
110
|
-
- test/include_source_files_test.rb
|
|
111
|
-
- test/modules_test.rb
|
|
112
|
-
- test/nested_test.rb
|
|
113
|
-
- test/overloading_test.rb
|
|
114
|
-
- test/struct_test.rb
|
|
115
|
-
- test/subclass_test.rb
|
|
116
|
-
- test/test_helper.rb
|
|
117
|
-
- test/to_from_ruby_test.rb
|
|
118
|
-
- test/wrap_as_test.rb
|
|
119
108
|
- test/headers/Adder.cpp
|
|
120
109
|
- test/headers/Adder.h
|
|
110
|
+
- test/headers/Subtracter.hpp
|
|
121
111
|
- test/headers/alloc_strats.h
|
|
122
112
|
- test/headers/class_methods.h
|
|
123
113
|
- test/headers/code/custom_to_from_ruby.cpp
|
|
@@ -142,12 +132,22 @@ files:
|
|
|
142
132
|
- test/headers/overload.h
|
|
143
133
|
- test/headers/requires_define.h
|
|
144
134
|
- test/headers/subclass.h
|
|
145
|
-
- test/headers/Subtracter.hpp
|
|
146
135
|
- test/headers/to_from_ruby.h
|
|
147
136
|
- test/headers/to_from_ruby_source.cpp
|
|
148
137
|
- test/headers/ugly_interface.h
|
|
149
138
|
- test/headers/ugly_interface_ns.h
|
|
150
139
|
- test/headers/with_includes.h
|
|
140
|
+
- test/implicit_cast_test.rb
|
|
141
|
+
- test/include_source_dir_test.rb
|
|
142
|
+
- test/include_source_files_test.rb
|
|
143
|
+
- test/modules_test.rb
|
|
144
|
+
- test/nested_test.rb
|
|
145
|
+
- test/overloading_test.rb
|
|
146
|
+
- test/struct_test.rb
|
|
147
|
+
- test/subclass_test.rb
|
|
148
|
+
- test/test_helper.rb
|
|
149
|
+
- test/to_from_ruby_test.rb
|
|
150
|
+
- test/wrap_as_test.rb
|
|
151
151
|
homepage: http://rbplusplus.rubyforge.org
|
|
152
152
|
licenses:
|
|
153
153
|
- MIT
|
|
@@ -158,17 +158,17 @@ require_paths:
|
|
|
158
158
|
- lib
|
|
159
159
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
160
160
|
requirements:
|
|
161
|
-
- -
|
|
161
|
+
- - ">="
|
|
162
162
|
- !ruby/object:Gem::Version
|
|
163
163
|
version: '0'
|
|
164
164
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
165
165
|
requirements:
|
|
166
|
-
- -
|
|
166
|
+
- - ">="
|
|
167
167
|
- !ruby/object:Gem::Version
|
|
168
168
|
version: '0'
|
|
169
169
|
requirements: []
|
|
170
170
|
rubyforge_project: rbplusplus
|
|
171
|
-
rubygems_version: 2.
|
|
171
|
+
rubygems_version: 2.4.8
|
|
172
172
|
signing_key:
|
|
173
173
|
specification_version: 4
|
|
174
174
|
summary: Ruby library to generate Rice wrapper code
|