xot 0.3.4 β 0.3.5
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/.github/PULL_REQUEST_TEMPLATE.md +12 -0
- data/CONTRIBUTING.md +7 -0
- data/ChangeLog.md +6 -0
- data/README.md +47 -2
- data/VERSION +1 -1
- data/lib/xot/rake/util.rb +4 -4
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fb32bfca53b907bc70eda1e106532a0122abb189b0ff74fe150213bfc4b54e27
|
4
|
+
data.tar.gz: 5ab847804b982c1f5ab647237a87bd4665e2fbf5713d9b072b88aa409f8b9896
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d1e9dab3c783e57d0c2623955a575a8f1f097ae00246695275b11407d2ee7c338f23785eac5f371179d259765bd177a36e005ca96d680c7e5f2a1e0d4692bfe6
|
7
|
+
data.tar.gz: 03f3adb2c666002145f1d3874221721dc23d04e93431574b163387fda9ccaa13430b292dd554af7d9f239577852297e2e7327f7edd7627ba100041006d338db1
|
@@ -0,0 +1,12 @@
|
|
1
|
+
## Pull Requests Not Accepted π«
|
2
|
+
|
3
|
+
Thank you for your interest in contributing!
|
4
|
+
However, this repository does not accept pull requests directly.
|
5
|
+
|
6
|
+
### Where to Contribute?
|
7
|
+
|
8
|
+
Please submit your changes to the [xord/all](https://github.com/xord/all) monorepo, which serves as the primary repository for all our main libraries.
|
9
|
+
|
10
|
+
For more details, please refer to our [contribution guidelines](../CONTRIBUTING.md).
|
11
|
+
|
12
|
+
Thanks for your understanding! π
|
data/CONTRIBUTING.md
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
# Contribution Guide
|
2
|
+
|
3
|
+
Thank you for your interest in contributing!
|
4
|
+
However, this repository does not accept pull requests.
|
5
|
+
Instead, please submit your changes to the [xord/all](https://github.com/xord/all) monorepo, which serves as the primary repository for all our main libraries.
|
6
|
+
|
7
|
+
For any questions, feel free to open an issue.
|
data/ChangeLog.md
CHANGED
data/README.md
CHANGED
@@ -1,4 +1,49 @@
|
|
1
|
+
# Xot - Some useful utility classes and functions
|
1
2
|
|
2
|
-
|
3
|
+

|
4
|
+

|
5
|
+

|
3
6
|
|
4
|
-
|
7
|
+
## β οΈ Notice
|
8
|
+
|
9
|
+
This repository is a read-only mirror of our monorepo.
|
10
|
+
We do not accept pull requests or direct contributions here.
|
11
|
+
|
12
|
+
### π Where to Contribute?
|
13
|
+
|
14
|
+
All development happens in our [xord/all](https://github.com/xord/all) monorepo, which contains all our main libraries.
|
15
|
+
If you'd like to contribute, please submit your changes there.
|
16
|
+
|
17
|
+
For more details, check out our [Contribution Guidelines](./CONTRIBUTING.md).
|
18
|
+
|
19
|
+
Thanks for your support! π
|
20
|
+
|
21
|
+
## π About
|
22
|
+
|
23
|
+
**Xot** is a small utility library that was extracted for internal use to provide basic helper classes and functions across our own Ruby gems.
|
24
|
+
|
25
|
+
Itβs not intended for general public use, but rather serves as a simple collection of utilities to make our own development process more efficient and consistent.
|
26
|
+
|
27
|
+
Feel free to explore, but please note that itβs not actively maintained or intended for broad adoption.
|
28
|
+
|
29
|
+
## π¦ Installation
|
30
|
+
|
31
|
+
Add this line to your Gemfile:
|
32
|
+
```ruby
|
33
|
+
$ gem 'xot'
|
34
|
+
```
|
35
|
+
|
36
|
+
Then, install gem:
|
37
|
+
```bash
|
38
|
+
$ bundle install
|
39
|
+
```
|
40
|
+
|
41
|
+
Or install it directly:
|
42
|
+
```bash
|
43
|
+
$ gem install xot
|
44
|
+
```
|
45
|
+
|
46
|
+
## π License
|
47
|
+
|
48
|
+
**Xot** is licensed under the MIT License.
|
49
|
+
See the [LICENSE](./LICENSE) file for details.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.5
|
data/lib/xot/rake/util.rb
CHANGED
@@ -207,10 +207,10 @@ module Xot
|
|
207
207
|
s = flags.dup
|
208
208
|
s << warning_opts.map {|s| " -W#{s}"}.join
|
209
209
|
s << " -arch arm64" if RUBY_PLATFORM =~ /arm64-darwin/
|
210
|
-
s << ' -std=c++20'
|
211
|
-
s << ' -std=c++20 -stdlib=libc++ -mmacosx-version-min=10.
|
212
|
-
s << ' ' + RbConfig::CONFIG['debugflags']
|
213
|
-
s.gsub!(/-O\d?\w*/, '-O0')
|
210
|
+
s << ' -std=c++20' if gcc?
|
211
|
+
s << ' -std=c++20 -stdlib=libc++ -mmacosx-version-min=10.10' if clang?
|
212
|
+
s << ' ' + RbConfig::CONFIG['debugflags'] if debug?
|
213
|
+
s.gsub!(/-O\d?\w*/, '-O0') if debug?
|
214
214
|
s
|
215
215
|
end
|
216
216
|
|
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.3.
|
4
|
+
version: 0.3.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- xordog
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-23 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++.
|
@@ -18,10 +18,12 @@ extensions:
|
|
18
18
|
- Rakefile
|
19
19
|
extra_rdoc_files: []
|
20
20
|
files:
|
21
|
+
- ".github/PULL_REQUEST_TEMPLATE.md"
|
21
22
|
- ".github/workflows/release-gem.yml"
|
22
23
|
- ".github/workflows/tag.yml"
|
23
24
|
- ".github/workflows/test.yml"
|
24
25
|
- ".github/workflows/utils.rb"
|
26
|
+
- CONTRIBUTING.md
|
25
27
|
- ChangeLog.md
|
26
28
|
- Gemfile
|
27
29
|
- Gemfile.lock
|