Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

#
# Created: 15th August 2026
# Updated: 19th August 2026
# Updated: 28th August 2026
#

name: Ruby
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
/.bzr/
/.config/
/.svn/
/.vscode/
/.yardoc/

/_build/
Expand Down
2 changes: 2 additions & 0 deletions .ruby-version-exclusions
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
1.8.7-p375
1.9.3-p551
2 changes: 2 additions & 0 deletions .sis/script_info_lines.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
woad.Ruby - Minimal ANSI terminal colour codes, for Ruby
Copyright (c) Matthew Wilson, 2026
43 changes: 43 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"[json]": {
"editor.insertSpaces": true,
"editor.tabSize": 2,
},
"[markdown]": {
"editor.insertSpaces": true,
"editor.tabSize": 2,
},
"[python]": {
"editor.insertSpaces": true,
"editor.rulers": [ 60, 76 ],
"editor.tabSize": 4,
},
"[ruby]": {
"editor.defaultFormatter": "Shopify.ruby-lsp",
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.insertSpaces": true,
"editor.rulers": [ 60, 76 ],
"editor.semanticHighlighting.enabled": true,
"editor.tabSize": 2,
},
"[shellscript]": {
"editor.insertSpaces": true,
"editor.rulers": [ 60, 76 ],
"editor.tabSize": 2,
},
"[toml]": {
"editor.insertSpaces": false,
"editor.tabSize": 2,
},
"cmake.configureOnOpen": false,
"editor.detectIndentation": false,
"editor.insertSpaces": false,
"editor.renderWhitespace": "all",
"editor.rulers": [ 76 ],
"editor.tabSize": 2,
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"git.mergeEditor": false,
"rubyLsp.formatter": "auto",
}
8 changes: 8 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# woad.Ruby - Changes <!-- omit in toc -->


## 0.0.3 - 28th August 2026

* updated GitHub Actions checkout references to **v7**;
* added exclusions for obsolete Ruby versions to **.ruby-version-exclusions**;
* corrected the **woad** related-project description to include **C++**;
* retained the Ruby 2.0+ gem requirement and corrected shared project URL metadata;


## 0.0.2 - 19th August 2026

* **EXAMPLES.md** catalog and **examples/print_status**;
Expand Down
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

| Date | News Item |
| ---------------- | -------------------------------------------------------------------------------------- |
| 28th August 2026 | [**woad.Ruby** 0.0.3](https://github.com/synesissoftware/woad.Ruby/releases/tag/0.0.3) |
| 20th August 2026 | [**woad.Ruby** 0.0.2](https://github.com/synesissoftware/woad.Ruby/releases/tag/0.0.2) |
| 15th August 2026 | [**woad.Ruby** 0.0.1](https://github.com/synesissoftware/woad.Ruby/releases/tag/0.0.1) |
| 15th August 2026 | [**woad.Ruby** 0.0.0](https://github.com/synesissoftware/woad.Ruby/releases/tag/0.0.0) |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ Projects that depend on **woad.Ruby**:

### Related projects

* [**woad**](https://github.com/synesissoftware/woad/) (**C**);
* [**woad**](https://github.com/synesissoftware/woad/) (**C**, **C++**);
* [**woad.Python**](https://github.com/synesissoftware/woad.Python/);
* [**woad.Rust**](https://github.com/synesissoftware/woad.Rust/);

Expand Down
4 changes: 2 additions & 2 deletions lib/woad/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# Purpose: Version for woad.Ruby library
#
# Created: 15th August 2026
# Updated: 20th August 2026
# Updated: 28th August 2026
#
# Home: https://github.com/synesissoftware/woad.Ruby
#
Expand Down Expand Up @@ -50,7 +50,7 @@
module Woad

# Current version of the woad.Ruby library
VERSION = '0.0.2'
VERSION = '0.0.3'

private
# @!visibility private
Expand Down
15 changes: 8 additions & 7 deletions woad.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Purpose: Gemspec for woad.Ruby library
#
# Created: 15th August 2026
# Updated: 19th August 2026
# Updated: 28th August 2026
#
# ######################################################################## #

Expand All @@ -13,6 +13,7 @@ $:.unshift File.join(File.dirname(__FILE__), 'lib')

require 'woad/version'

PROJECT_URL = 'https://github.com/synesissoftware/woad.Ruby'

Gem::Specification.new do |spec|

Expand All @@ -31,16 +32,16 @@ END_DESC
spec.email = [
'matthew@synesis.com.au',
]
spec.homepage = 'https://github.com/synesissoftware/woad.Ruby'
spec.homepage = PROJECT_URL
spec.license = 'BSD-3-Clause'

spec.required_ruby_version = [ '>= 2.0' ]
spec.required_ruby_version = [ '>= 2.0', '< 5' ]

spec.metadata = {
'bug_tracker_uri' => 'https://github.com/synesissoftware/woad.Ruby/issues',
'changelog_uri' => 'https://github.com/synesissoftware/woad.Ruby/blob/master/CHANGES.md',
'homepage_uri' => 'https://github.com/synesissoftware/woad.Ruby',
'source_code_uri' => 'https://github.com/synesissoftware/woad.Ruby',
'bug_tracker_uri' => "#{PROJECT_URL}/issues",
'changelog_uri' => "#{PROJECT_URL}/blob/master/CHANGES.md",
'homepage_uri' => PROJECT_URL,
'source_code_uri' => PROJECT_URL,
}

spec.files = Dir[
Expand Down