autoc 1.1 → 1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardopts +3 -1
- data/CHANGES +15 -0
- data/README +2 -0
- data/doc/AutoC.html +84 -14
- data/doc/AutoC/Code.html +31 -31
- data/doc/AutoC/Collection.html +250 -182
- data/doc/AutoC/HashMap.html +565 -245
- data/doc/AutoC/HashSet.html +266 -264
- data/doc/AutoC/List.html +317 -249
- data/doc/AutoC/Module.html +66 -72
- data/doc/AutoC/Module/File.html +25 -25
- data/doc/AutoC/Module/Header.html +25 -25
- data/doc/AutoC/Module/Source.html +43 -43
- data/doc/AutoC/Priority.html +3 -3
- data/doc/AutoC/Queue.html +352 -286
- data/doc/AutoC/Reference.html +578 -0
- data/doc/AutoC/Type.html +941 -131
- data/doc/AutoC/UserDefinedType.html +64 -313
- data/doc/AutoC/Vector.html +336 -306
- data/doc/_index.html +22 -4
- data/doc/class_list.html +6 -2
- data/doc/file.CHANGES.html +102 -0
- data/doc/file.README.html +7 -4
- data/doc/file_list.html +8 -1
- data/doc/frames.html +1 -1
- data/doc/index.html +7 -4
- data/doc/js/full_list.js +4 -1
- data/doc/method_list.html +236 -118
- data/doc/top-level-namespace.html +3 -3
- data/lib/autoc.rb +3 -3
- data/lib/autoc/code.rb +11 -5
- data/lib/autoc/collection.rb +62 -56
- data/lib/autoc/collection/hash_map.rb +83 -63
- data/lib/autoc/collection/hash_set.rb +74 -64
- data/lib/autoc/collection/list.rb +48 -41
- data/lib/autoc/collection/queue.rb +53 -47
- data/lib/autoc/collection/vector.rb +63 -42
- data/lib/autoc/type.rb +326 -61
- data/test/test.c +120 -0
- data/test/test.rb +16 -2
- data/test/test_auto.c +1683 -987
- data/test/test_auto.h +491 -176
- metadata +22 -19
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: autoc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '1.
|
4
|
+
version: '1.2'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Oleg A. Khlybov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-11-22 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |2
|
14
14
|
AutoC is a collection of Ruby modules related to automatic C source code generation:
|
@@ -19,34 +19,31 @@ executables: []
|
|
19
19
|
extensions: []
|
20
20
|
extra_rdoc_files: []
|
21
21
|
files:
|
22
|
-
-
|
23
|
-
-
|
24
|
-
-
|
25
|
-
-
|
26
|
-
- lib/autoc/collection/queue.rb
|
27
|
-
- lib/autoc/collection/vector.rb
|
28
|
-
- lib/autoc/collection.rb
|
29
|
-
- lib/autoc/type.rb
|
30
|
-
- lib/autoc.rb
|
22
|
+
- ".yardopts"
|
23
|
+
- CHANGES
|
24
|
+
- README
|
25
|
+
- doc/AutoC.html
|
31
26
|
- doc/AutoC/Code.html
|
32
27
|
- doc/AutoC/Collection.html
|
33
28
|
- doc/AutoC/HashMap.html
|
34
29
|
- doc/AutoC/HashSet.html
|
35
30
|
- doc/AutoC/List.html
|
31
|
+
- doc/AutoC/Module.html
|
36
32
|
- doc/AutoC/Module/File.html
|
37
33
|
- doc/AutoC/Module/Header.html
|
38
34
|
- doc/AutoC/Module/Source.html
|
39
|
-
- doc/AutoC/Module.html
|
40
35
|
- doc/AutoC/Priority.html
|
41
36
|
- doc/AutoC/Queue.html
|
37
|
+
- doc/AutoC/Reference.html
|
42
38
|
- doc/AutoC/Type.html
|
43
39
|
- doc/AutoC/UserDefinedType.html
|
44
40
|
- doc/AutoC/Vector.html
|
45
|
-
- doc/
|
41
|
+
- doc/_index.html
|
46
42
|
- doc/class_list.html
|
47
43
|
- doc/css/common.css
|
48
44
|
- doc/css/full_list.css
|
49
45
|
- doc/css/style.css
|
46
|
+
- doc/file.CHANGES.html
|
50
47
|
- doc/file.README.html
|
51
48
|
- doc/file_list.html
|
52
49
|
- doc/frames.html
|
@@ -56,14 +53,20 @@ files:
|
|
56
53
|
- doc/js/jquery.js
|
57
54
|
- doc/method_list.html
|
58
55
|
- doc/top-level-namespace.html
|
59
|
-
-
|
56
|
+
- lib/autoc.rb
|
57
|
+
- lib/autoc/code.rb
|
58
|
+
- lib/autoc/collection.rb
|
59
|
+
- lib/autoc/collection/hash_map.rb
|
60
|
+
- lib/autoc/collection/hash_set.rb
|
61
|
+
- lib/autoc/collection/list.rb
|
62
|
+
- lib/autoc/collection/queue.rb
|
63
|
+
- lib/autoc/collection/vector.rb
|
64
|
+
- lib/autoc/type.rb
|
60
65
|
- test/test.c
|
61
66
|
- test/test.h
|
62
67
|
- test/test.rb
|
63
68
|
- test/test_auto.c
|
64
69
|
- test/test_auto.h
|
65
|
-
- README
|
66
|
-
- .yardopts
|
67
70
|
homepage: http://autoc.sourceforge.net/
|
68
71
|
licenses:
|
69
72
|
- BSD
|
@@ -74,17 +77,17 @@ require_paths:
|
|
74
77
|
- lib
|
75
78
|
required_ruby_version: !ruby/object:Gem::Requirement
|
76
79
|
requirements:
|
77
|
-
- -
|
80
|
+
- - ">="
|
78
81
|
- !ruby/object:Gem::Version
|
79
82
|
version: '1.8'
|
80
83
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
81
84
|
requirements:
|
82
|
-
- -
|
85
|
+
- - ">="
|
83
86
|
- !ruby/object:Gem::Version
|
84
87
|
version: '0'
|
85
88
|
requirements: []
|
86
89
|
rubyforge_project:
|
87
|
-
rubygems_version: 2.
|
90
|
+
rubygems_version: 2.2.2
|
88
91
|
signing_key:
|
89
92
|
specification_version: 4
|
90
93
|
summary: A host of Ruby modules related to automatic C source code generation
|