xot 0.1.15 → 0.1.16
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
- data/VERSION +1 -1
- data/include/xot/exception.h +18 -6
- data/lib/xot/rake.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0e6a18a9ea642c4ac20d70096dddf5eadf89e6de95b093940402e5cefa746be3
|
|
4
|
+
data.tar.gz: b2118e8a68ca94e770ae1ef26f9f60a26f77ccf04e2fc7ba28b7fc89f4da1aa8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 00c9091d6f2204c2a23d942acd788e157d0b14b1de2b5ea1e378725748cc36f37c46abdbe20a5a75a0070976210ef8f4405d03b356be26d53095d5c8010aa8fa
|
|
7
|
+
data.tar.gz: 6711e0296cea2b5fc0a7849322a65bd1bb3f8b70d0a81fec444bb4d52b5143b67ad8ee29fcb456334c7aec26975b59c12b5c6bc0ceba239a3525789e6f0f1ba6
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.16
|
data/include/xot/exception.h
CHANGED
|
@@ -46,17 +46,29 @@ namespace Xot
|
|
|
46
46
|
namespace ErrorFunctions
|
|
47
47
|
{
|
|
48
48
|
|
|
49
|
-
|
|
49
|
+
[[noreturn]]
|
|
50
|
+
void xot_error (
|
|
51
|
+
const char* file, int line, const char* format = NULL, ...);
|
|
50
52
|
|
|
51
|
-
|
|
53
|
+
[[noreturn]]
|
|
54
|
+
void argument_error (
|
|
55
|
+
const char* file, int line, const char* format = NULL, ...);
|
|
52
56
|
|
|
53
|
-
|
|
57
|
+
[[noreturn]]
|
|
58
|
+
void index_error (
|
|
59
|
+
const char* file, int line, const char* format = NULL, ...);
|
|
54
60
|
|
|
55
|
-
|
|
61
|
+
[[noreturn]]
|
|
62
|
+
void invalid_state_error (
|
|
63
|
+
const char* file, int line, const char* format = NULL, ...);
|
|
56
64
|
|
|
57
|
-
|
|
65
|
+
[[noreturn]]
|
|
66
|
+
void system_error (
|
|
67
|
+
const char* file, int line, const char* format = NULL, ...);
|
|
58
68
|
|
|
59
|
-
|
|
69
|
+
[[noreturn]]
|
|
70
|
+
void not_implemented_error (
|
|
71
|
+
const char* file, int line, const char* format = NULL, ...);
|
|
60
72
|
|
|
61
73
|
}// ErrorFunctions
|
|
62
74
|
|
data/lib/xot/rake.rb
CHANGED
|
@@ -175,7 +175,7 @@ module Xot
|
|
|
175
175
|
namespace :test do
|
|
176
176
|
::Rake::TestTask.new :full do |t|
|
|
177
177
|
t.libs << lib_dir
|
|
178
|
-
t.test_files = FileList["#{test_dir}
|
|
178
|
+
t.test_files = FileList["#{test_dir}/**/test_*.rb"] - test_alones - test_excludes
|
|
179
179
|
t.verbose = true
|
|
180
180
|
end
|
|
181
181
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: xot
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.16
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- xordog
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-11-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: This library include some useful utility classes and functions for development
|
|
14
14
|
with C++.
|
|
@@ -72,7 +72,7 @@ files:
|
|
|
72
72
|
homepage: https://github.com/xord/xot
|
|
73
73
|
licenses: []
|
|
74
74
|
metadata: {}
|
|
75
|
-
post_install_message:
|
|
75
|
+
post_install_message:
|
|
76
76
|
rdoc_options: []
|
|
77
77
|
require_paths:
|
|
78
78
|
- lib
|
|
@@ -88,7 +88,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
88
88
|
version: '0'
|
|
89
89
|
requirements: []
|
|
90
90
|
rubygems_version: 3.0.3
|
|
91
|
-
signing_key:
|
|
91
|
+
signing_key:
|
|
92
92
|
specification_version: 4
|
|
93
93
|
summary: A Utility library for C++ developemt.
|
|
94
94
|
test_files:
|