rubber-generate 0.0.15 → 0.0.16
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/rubber-generate +1 -0
- data/lib/rubber/scanner.rb +1 -1
- metadata +24 -22
data/bin/rubber-generate
CHANGED
@@ -57,6 +57,7 @@ OptionParser.new { |opts|
|
|
57
57
|
scanner.scan(nil)
|
58
58
|
|
59
59
|
File.open(scanner.ext + ".c", 'w') do |out|
|
60
|
+
out.puts '#pragma GCC diagnostic ignored "-Wunused-but-set-variable"'
|
60
61
|
File.open(scanner.ext + ".rd", 'w') do |doc|
|
61
62
|
File.open('extconf.rb', 'w') do |extconf|
|
62
63
|
Rubber.generate_extconf(scanner, extconf)
|
data/lib/rubber/scanner.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubber-generate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 63
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 16
|
10
|
+
version: 0.0.16
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Geoff Youngs
|
@@ -15,7 +15,8 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-10-
|
18
|
+
date: 2011-10-26 00:00:00 +01:00
|
19
|
+
default_executable:
|
19
20
|
dependencies: []
|
20
21
|
|
21
22
|
description: " rubber-c-binder allows a rubyish means of generating bindings for C libraries,\n including (but not limited to) GObject based libraries.\n\n It allows C code to be written in the context of a ruby style class/method layout\n and eases type checking and conversion between Ruby & C datatypes.\n"
|
@@ -28,31 +29,32 @@ extra_rdoc_files:
|
|
28
29
|
- README.textile
|
29
30
|
files:
|
30
31
|
- bin/rubber-generate
|
31
|
-
- lib/rubber/
|
32
|
+
- lib/rubber/autord.rb
|
33
|
+
- lib/rubber/codegen.rb
|
34
|
+
- lib/rubber/scanner.rb
|
35
|
+
- lib/rubber/struct.rb
|
36
|
+
- lib/rubber/mkextconf.rb
|
37
|
+
- lib/rubber/codegen/function.rb
|
38
|
+
- lib/rubber/codegen/array.rb
|
32
39
|
- lib/rubber/codegen/ginterface.rb
|
40
|
+
- lib/rubber/codegen/class.rb
|
41
|
+
- lib/rubber/codegen/gboxed.rb
|
42
|
+
- lib/rubber/codegen/float.rb
|
43
|
+
- lib/rubber/codegen/module.rb
|
44
|
+
- lib/rubber/codegen/enum.rb
|
45
|
+
- lib/rubber/codegen/integer.rb
|
33
46
|
- lib/rubber/codegen/genum.rb
|
34
|
-
- lib/rubber/codegen/
|
47
|
+
- lib/rubber/codegen/struct.rb
|
48
|
+
- lib/rubber/codegen/param.rb
|
35
49
|
- lib/rubber/codegen/flags.rb
|
50
|
+
- lib/rubber/codegen/gflags.rb
|
51
|
+
- lib/rubber/codegen/gobject.rb
|
36
52
|
- lib/rubber/codegen/string.rb
|
37
|
-
- lib/rubber/codegen/struct.rb
|
38
|
-
- lib/rubber/codegen/module.rb
|
39
53
|
- lib/rubber/codegen/gcrefpool.rb
|
40
|
-
- lib/rubber/codegen/function.rb
|
41
|
-
- lib/rubber/codegen/gboxed.rb
|
42
|
-
- lib/rubber/codegen/integer.rb
|
43
|
-
- lib/rubber/codegen/gobject.rb
|
44
|
-
- lib/rubber/codegen/class.rb
|
45
|
-
- lib/rubber/codegen/enum.rb
|
46
|
-
- lib/rubber/codegen/array.rb
|
47
|
-
- lib/rubber/codegen/float.rb
|
48
|
-
- lib/rubber/autord.rb
|
49
|
-
- lib/rubber/struct.rb
|
50
|
-
- lib/rubber/mkextconf.rb
|
51
|
-
- lib/rubber/codegen.rb
|
52
54
|
- lib/rubber/types.rb
|
53
|
-
- lib/rubber/scanner.rb
|
54
55
|
- README.textile
|
55
56
|
- example/vte.cr
|
57
|
+
has_rdoc: true
|
56
58
|
homepage: http://github.com/geoffyoungs/rubber-generate
|
57
59
|
licenses: []
|
58
60
|
|
@@ -82,7 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
82
84
|
requirements: []
|
83
85
|
|
84
86
|
rubyforge_project:
|
85
|
-
rubygems_version: 1.
|
87
|
+
rubygems_version: 1.3.9.3
|
86
88
|
signing_key:
|
87
89
|
specification_version: 3
|
88
90
|
summary: Template language for generating Ruby bindings for C libraries
|