rucy 0.3.3 → 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: 62f670368c6842983d427a00468ea79303f3fdc7fa22d08267306977f14afcc3
4
- data.tar.gz: 36739dee915aea82ce807949b3cdefff4bf3da72d0534d93ab5d7b0a29ca339b
3
+ metadata.gz: e1e60513f22fac53707fd77b41901255c43cef0cc006912404d21bc4b693748d
4
+ data.tar.gz: a81c6875e5124f212c0915ee07a2b765cdf38825470e4f8d43c9de9a7c857430
5
5
  SHA512:
6
- metadata.gz: f4da4e601afd5970e312a1df146b07e336480c8133239b8769286e45b9ba155d87bdc2f33cf7b8f56a942e93cb44073076800ec0c86dfec4ca2ef09a6a122293
7
- data.tar.gz: da17afa9ba80459c5409f2ae8d4611a21874db6ed8786b8584c560a6ab742e46723c81dedbe4e38113d9be0c5b0e28da33b58aaa5cc6859011c5f6025051a45c
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
@@ -1,6 +1,17 @@
1
1
  # rucy 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
+
10
+ ## [v0.3.4] - 2025-03-07
11
+
12
+ - The doc:clean task deletes 'doc/' dir
13
+
14
+
4
15
  ## [v0.3.3] - 2025-01-23
5
16
 
6
17
  - Update dependencies
data/README.md CHANGED
@@ -1,31 +1,54 @@
1
+ # Rucy - A Ruby C++ Extension Helper Library
1
2
 
2
- # Rucy - A Ruby C++ Extension Helper Library.
3
+ ![License](https://img.shields.io/github/license/xord/rucy)
4
+ ![Build Status](https://github.com/xord/rucy/actions/workflows/test.yml/badge.svg)
5
+ ![Gem Version](https://badge.fury.io/rb/rucy.svg)
3
6
 
4
- by xordog@gmail.com
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
- ## What is this library?
12
+ ### 🔄 Where to Contribute?
8
13
 
9
- This library helps you to develop Ruby C extension library with few useful
10
- classes.
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
- ## How to use
30
+ Add this line to your Gemfile:
31
+ ```ruby
32
+ $ gem 'rucy'
33
+ ```
17
34
 
18
- $ gem install rucy
19
-
20
- write C++ source like ext/rucy/tester.cpp.
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
- ## Examples
45
+ And then, write C++ source like ext/rucy/tester.cpp.
24
46
 
25
- see ext/rucy/tester.cpp.
47
+ ## 💡 Examples
26
48
 
49
+ See ext/rucy/tester.cpp.
27
50
 
28
- ## Contact information.
51
+ ## 📜 License
29
52
 
30
- Web: http://blog.xord.org/
31
- Mail: xordog@gmail.com
53
+ **Rucy** is licensed under the MIT License.
54
+ See the [LICENSE](./LICENSE) file for details.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.3
1
+ 0.3.5
data/lib/rucy/rake.rb CHANGED
@@ -39,7 +39,7 @@ module Rucy
39
39
  directory rdocdir
40
40
 
41
41
  task :clean do
42
- sh %( rm -rf #{rdocdir} #{rdocs.values.join ' '} )
42
+ sh %( rm -rf #{doc_dir} #{rdocdir} #{rdocs.values.join ' '} )
43
43
  end
44
44
  end
45
45
  end
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.3', '>= 0.3.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.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-01-22 00:00:00.000000000 Z
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.3
19
+ version: 0.3.5
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 0.3.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.3
29
+ version: 0.3.5
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 0.3.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