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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a26e9fa724bc739101d50ca597db562c45579a6838e58b499500f8fde36fc2cd
4
- data.tar.gz: fda8ebb7d831ea1089a99eddfe804d6b4ed954ecf4b9fd3e1132b8eb89eee9c2
3
+ metadata.gz: fb32bfca53b907bc70eda1e106532a0122abb189b0ff74fe150213bfc4b54e27
4
+ data.tar.gz: 5ab847804b982c1f5ab647237a87bd4665e2fbf5713d9b072b88aa409f8b9896
5
5
  SHA512:
6
- metadata.gz: d557d7cb96560fac93a415a4e4c518a3cbea52ca55ea8a915a8119147128996fcd95fe6bf289e058c85335e0a5021ae6f5b08277b9ea51fa4c5c85d0361bdc50
7
- data.tar.gz: 7a42fcd477c066a267074882ca44c8a27c07b656a7a853d7e06efa9c6a0fde5400bfdf7eeb67900939e3b0c557cea69ef80bc4ff314c7fb46564b77c16406e1b
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
@@ -1,6 +1,12 @@
1
1
  # xot ChangeLog
2
2
 
3
3
 
4
+ ## [v0.3.5] - 2025-03-24
5
+
6
+ - Add PULL_REQUEST_TEMPLATE.md
7
+ - Add CONTRIBUTING.md
8
+
9
+
4
10
  ## [v0.3.4] - 2025-03-07
5
11
 
6
12
  - Hookable passes keyword args
data/README.md CHANGED
@@ -1,4 +1,49 @@
1
+ # Xot - Some useful utility classes and functions
1
2
 
2
- # Xot - Some useful utility classes and functions.
3
+ ![License](https://img.shields.io/github/license/xord/xot)
4
+ ![Build Status](https://github.com/xord/xot/actions/workflows/test.yml/badge.svg)
5
+ ![Gem Version](https://badge.fury.io/rb/xot.svg)
3
6
 
4
- by xordog@gmail.com
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.4
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' if gcc?
211
- s << ' -std=c++20 -stdlib=libc++ -mmacosx-version-min=10.7' if clang?
212
- s << ' ' + RbConfig::CONFIG['debugflags'] if debug?
213
- s.gsub!(/-O\d?\w*/, '-O0') if debug?
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
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-06 00:00:00.000000000 Z
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