rcx 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.clang-format +28 -0
- data/.rspec +3 -0
- data/.yarnrc.yml +1 -0
- data/CHANGELOG.md +4 -0
- data/Doxyfile +2863 -0
- data/LICENSE.txt +23 -0
- data/README.md +20 -0
- data/Rakefile +39 -0
- data/examples/class.cpp +20 -0
- data/include/rcx/internal/rcx.hpp +1258 -0
- data/include/rcx/internal/rcx_impl.hpp +1365 -0
- data/include/rcx/rcx.hpp +6 -0
- data/lib/rcx/mkmf.rb +54 -0
- data/lib/rcx/version.rb +3 -0
- data/lib/rcx.rb +2 -0
- data/package.json +6 -0
- data/yarn.lock +21 -0
- metadata +74 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 59b6c06f1c9ff032b2b70878a6368e4d83e4a8370a19fb2d51b5420831a0211e
|
4
|
+
data.tar.gz: 78d982e5b911b4bb891681bc06ff9da85fb57809076f8f508933269dc9d9a6e0
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 59354a09ceac21baa60fc1ef1f645d56645b61ccc707eb88f2c533c14d1c7b64f4c57223faebf02bea62c1f351aba4f00819eb9f2d20011cf645c2dc8807a210
|
7
|
+
data.tar.gz: ed6563dd44037828a5f620b27a54f2d3714e7e5cdcfe902f913da8a18c4ecb2bbf5ed32bd34c574feb818b7ecc2a80c11526fb5dde21fb4f8217a6089c6b850f
|
data/.clang-format
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
# -*- mode: yaml -*-
|
2
|
+
BasedOnStyle: LLVM
|
3
|
+
ColumnLimit: 100
|
4
|
+
---
|
5
|
+
Language: Cpp
|
6
|
+
AlignAfterOpenBracket: DontAlign
|
7
|
+
AllowShortFunctionsOnASingleLine: None
|
8
|
+
BracedInitializerIndentWidth: 2
|
9
|
+
BreakConstructorInitializers: BeforeColon
|
10
|
+
BreakInheritanceList: BeforeColon
|
11
|
+
ConstructorInitializerIndentWidth: 4
|
12
|
+
ContinuationIndentWidth: 4
|
13
|
+
FixNamespaceComments: false
|
14
|
+
NamespaceIndentation: All
|
15
|
+
SpaceBeforeCtorInitializerColon: false
|
16
|
+
SpaceBeforeInheritanceColon: false
|
17
|
+
SpaceBeforeParens: Never
|
18
|
+
SpaceBeforeRangeBasedForLoopColon: false
|
19
|
+
SpacesBeforeTrailingComments: 2
|
20
|
+
|
21
|
+
IncludeBlocks: Regroup
|
22
|
+
IncludeCategories:
|
23
|
+
- Regex: '^<([a-z_/]+)>'
|
24
|
+
Priority: 1
|
25
|
+
- Regex: '^<'
|
26
|
+
Priority: 2
|
27
|
+
- Regex: '.*'
|
28
|
+
Priority: 10
|
data/.rspec
ADDED
data/.yarnrc.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
nodeLinker: node-modules
|
data/CHANGELOG.md
ADDED