autoc 1.3 → 1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGES +4 -0
- data/doc/AutoC.html +55 -55
- data/doc/AutoC/Code.html +60 -57
- data/doc/AutoC/Collection.html +134 -124
- data/doc/AutoC/HashMap.html +147 -185
- data/doc/AutoC/HashSet.html +114 -325
- data/doc/AutoC/Iterators.html +126 -0
- data/doc/AutoC/Iterators/Bidirectional.html +204 -0
- data/doc/AutoC/Iterators/Unidirectional.html +200 -0
- data/doc/AutoC/List.html +81 -76
- data/doc/AutoC/Maps.html +290 -0
- data/doc/AutoC/Module.html +72 -69
- data/doc/AutoC/Module/File.html +55 -52
- data/doc/AutoC/Module/Header.html +55 -52
- data/doc/AutoC/Module/Source.html +63 -60
- data/doc/AutoC/Priority.html +57 -57
- data/doc/AutoC/Queue.html +75 -74
- data/doc/AutoC/Reference.html +92 -91
- data/doc/AutoC/Sets.html +520 -0
- data/doc/AutoC/String.html +70 -69
- data/doc/AutoC/TreeMap.html +1565 -0
- data/doc/AutoC/TreeSet.html +1447 -0
- data/doc/AutoC/Type.html +184 -110
- data/doc/AutoC/UserDefinedType.html +102 -102
- data/doc/AutoC/Vector.html +100 -91
- data/doc/_index.html +97 -33
- data/doc/class_list.html +24 -31
- data/doc/css/full_list.css +32 -31
- data/doc/css/style.css +220 -78
- data/doc/file.CHANGES.html +37 -30
- data/doc/file.README.html +29 -30
- data/doc/file_list.html +29 -31
- data/doc/frames.html +7 -16
- data/doc/index.html +29 -30
- data/doc/js/app.js +100 -76
- data/doc/js/full_list.js +170 -135
- data/doc/method_list.html +877 -431
- data/doc/top-level-namespace.html +35 -35
- data/lib/autoc.rb +4 -2
- data/lib/autoc/collection.rb +10 -4
- data/lib/autoc/collection/hash_map.rb +22 -41
- data/lib/autoc/collection/hash_set.rb +13 -120
- data/lib/autoc/collection/iterator.rb +39 -0
- data/lib/autoc/collection/list.rb +7 -5
- data/lib/autoc/collection/map.rb +41 -0
- data/lib/autoc/collection/queue.rb +8 -8
- data/lib/autoc/collection/set.rb +134 -0
- data/lib/autoc/collection/tree_map.rb +464 -0
- data/lib/autoc/collection/tree_set.rb +611 -0
- data/lib/autoc/collection/vector.rb +8 -4
- data/lib/autoc/string.rb +1 -1
- data/lib/autoc/type.rb +3 -0
- data/test/test.rb +2 -2
- data/test/test_auto.c +7141 -0
- data/test/test_auto.h +753 -0
- data/test/test_int_tree_set.rb +111 -0
- data/test/test_value_hash_map.rb +1 -1
- data/test/test_value_hash_set.rb +1 -1
- data/test/test_value_tree_map.rb +176 -0
- data/test/test_value_tree_set.rb +173 -0
- metadata +21 -5
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.4'
|
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: 2016-
|
11
|
+
date: 2016-10-12 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:
|
@@ -27,7 +27,11 @@ files:
|
|
27
27
|
- doc/AutoC/Collection.html
|
28
28
|
- doc/AutoC/HashMap.html
|
29
29
|
- doc/AutoC/HashSet.html
|
30
|
+
- doc/AutoC/Iterators.html
|
31
|
+
- doc/AutoC/Iterators/Bidirectional.html
|
32
|
+
- doc/AutoC/Iterators/Unidirectional.html
|
30
33
|
- doc/AutoC/List.html
|
34
|
+
- doc/AutoC/Maps.html
|
31
35
|
- doc/AutoC/Module.html
|
32
36
|
- doc/AutoC/Module/File.html
|
33
37
|
- doc/AutoC/Module/Header.html
|
@@ -35,7 +39,10 @@ files:
|
|
35
39
|
- doc/AutoC/Priority.html
|
36
40
|
- doc/AutoC/Queue.html
|
37
41
|
- doc/AutoC/Reference.html
|
42
|
+
- doc/AutoC/Sets.html
|
38
43
|
- doc/AutoC/String.html
|
44
|
+
- doc/AutoC/TreeMap.html
|
45
|
+
- doc/AutoC/TreeSet.html
|
39
46
|
- doc/AutoC/Type.html
|
40
47
|
- doc/AutoC/UserDefinedType.html
|
41
48
|
- doc/AutoC/Vector.html
|
@@ -59,24 +66,34 @@ files:
|
|
59
66
|
- lib/autoc/collection.rb
|
60
67
|
- lib/autoc/collection/hash_map.rb
|
61
68
|
- lib/autoc/collection/hash_set.rb
|
69
|
+
- lib/autoc/collection/iterator.rb
|
62
70
|
- lib/autoc/collection/list.rb
|
71
|
+
- lib/autoc/collection/map.rb
|
63
72
|
- lib/autoc/collection/queue.rb
|
73
|
+
- lib/autoc/collection/set.rb
|
74
|
+
- lib/autoc/collection/tree_map.rb
|
75
|
+
- lib/autoc/collection/tree_set.rb
|
64
76
|
- lib/autoc/collection/vector.rb
|
65
77
|
- lib/autoc/string.rb
|
66
78
|
- lib/autoc/type.rb
|
67
79
|
- test/test.rb
|
80
|
+
- test/test_auto.c
|
81
|
+
- test/test_auto.h
|
68
82
|
- test/test_char_string.rb
|
69
83
|
- test/test_int_list.rb
|
84
|
+
- test/test_int_tree_set.rb
|
70
85
|
- test/test_int_vector.rb
|
71
86
|
- test/test_value_hash_map.rb
|
72
87
|
- test/test_value_hash_set.rb
|
73
88
|
- test/test_value_list.rb
|
74
89
|
- test/test_value_queue.rb
|
90
|
+
- test/test_value_tree_map.rb
|
91
|
+
- test/test_value_tree_set.rb
|
75
92
|
- test/test_value_vector.rb
|
76
93
|
- test/value.rb
|
77
94
|
homepage: http://autoc.sourceforge.net/
|
78
95
|
licenses:
|
79
|
-
- BSD
|
96
|
+
- BSD-3-Clause
|
80
97
|
metadata: {}
|
81
98
|
post_install_message:
|
82
99
|
rdoc_options: []
|
@@ -94,9 +111,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
94
111
|
version: '0'
|
95
112
|
requirements: []
|
96
113
|
rubyforge_project:
|
97
|
-
rubygems_version: 2.
|
114
|
+
rubygems_version: 2.5.1
|
98
115
|
signing_key:
|
99
116
|
specification_version: 4
|
100
117
|
summary: A host of Ruby modules related to automatic C source code generation
|
101
118
|
test_files: []
|
102
|
-
has_rdoc:
|