rucy 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 +37 -14
- data/VERSION +1 -1
- data/rucy.gemspec +1 -1
- metadata +8 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e1e60513f22fac53707fd77b41901255c43cef0cc006912404d21bc4b693748d
|
4
|
+
data.tar.gz: a81c6875e5124f212c0915ee07a2b765cdf38825470e4f8d43c9de9a7c857430
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0bb381ca400c80362027d8cbe013fcac7b2543c7524f99dea7c1e142155bf8c58d6879ecf8965004ea4434fb3ea0f0e4521927a0b09f5b8f2a7d72eec255f1a5
|
7
|
+
data.tar.gz: 1e55960349b179ace582691d1184a09dea78414ca54ef5e1b167f084729e094fa90497ed5974e85bc39bf72a7bda617495221c096ce3de668cbd2bd0bf70c8d7
|
@@ -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,31 +1,54 @@
|
|
1
|
+
# Rucy - A Ruby C++ Extension Helper Library
|
1
2
|
|
2
|
-
|
3
|
+

|
4
|
+

|
5
|
+

|
3
6
|
|
4
|
-
|
7
|
+
## ⚠️ Notice
|
5
8
|
|
9
|
+
This repository is a read-only mirror of our monorepo.
|
10
|
+
We do not accept pull requests or direct contributions here.
|
6
11
|
|
7
|
-
|
12
|
+
### 🔄 Where to Contribute?
|
8
13
|
|
9
|
-
|
10
|
-
|
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
|
+
**Rucy** helps you to develop Ruby C extension library with few useful classes.
|
11
24
|
|
12
25
|
* Wrap VALUE for easy handling.
|
13
26
|
* Exception safe (Rucy/C++).
|
14
27
|
|
28
|
+
## 📦 Installation
|
15
29
|
|
16
|
-
|
30
|
+
Add this line to your Gemfile:
|
31
|
+
```ruby
|
32
|
+
$ gem 'rucy'
|
33
|
+
```
|
17
34
|
|
18
|
-
|
19
|
-
|
20
|
-
|
35
|
+
Then, install gem:
|
36
|
+
```bash
|
37
|
+
$ bundle install
|
38
|
+
```
|
21
39
|
|
40
|
+
Or install it directly:
|
41
|
+
```bash
|
42
|
+
$ gem install rucy
|
43
|
+
```
|
22
44
|
|
23
|
-
|
45
|
+
And then, write C++ source like ext/rucy/tester.cpp.
|
24
46
|
|
25
|
-
|
47
|
+
## 💡 Examples
|
26
48
|
|
49
|
+
See ext/rucy/tester.cpp.
|
27
50
|
|
28
|
-
##
|
51
|
+
## 📜 License
|
29
52
|
|
30
|
-
|
31
|
-
|
53
|
+
**Rucy** is licensed under the MIT License.
|
54
|
+
See the [LICENSE](./LICENSE) file for details.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.5
|
data/rucy.gemspec
CHANGED
@@ -25,7 +25,7 @@ Gem::Specification.new do |s|
|
|
25
25
|
s.platform = Gem::Platform::RUBY
|
26
26
|
s.required_ruby_version = '>= 3.0.0'
|
27
27
|
|
28
|
-
s.add_dependency 'xot', '~> 0.3.
|
28
|
+
s.add_dependency 'xot', '~> 0.3.5', '>= 0.3.5'
|
29
29
|
|
30
30
|
s.files = `git ls-files`.split $/
|
31
31
|
s.executables = s.files.grep(%r{^bin/}) {|f| File.basename f}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rucy
|
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
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: xot
|
@@ -16,20 +16,20 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.3.
|
19
|
+
version: 0.3.5
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 0.3.
|
22
|
+
version: 0.3.5
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
27
|
- - "~>"
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.3.
|
29
|
+
version: 0.3.5
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 0.3.
|
32
|
+
version: 0.3.5
|
33
33
|
description: This library helps you to develop Ruby Extension by C++.
|
34
34
|
email: xordog@gmail.com
|
35
35
|
executables:
|
@@ -50,10 +50,12 @@ files:
|
|
50
50
|
- ".doc/ext/rucy/struct.cpp"
|
51
51
|
- ".doc/ext/rucy/tester.cpp"
|
52
52
|
- ".doc/ext/rucy/value.cpp"
|
53
|
+
- ".github/PULL_REQUEST_TEMPLATE.md"
|
53
54
|
- ".github/workflows/release-gem.yml"
|
54
55
|
- ".github/workflows/tag.yml"
|
55
56
|
- ".github/workflows/test.yml"
|
56
57
|
- ".github/workflows/utils.rb"
|
58
|
+
- CONTRIBUTING.md
|
57
59
|
- ChangeLog.md
|
58
60
|
- Gemfile
|
59
61
|
- Gemfile.lock
|