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
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
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",
}
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Quench.Ruby - Changes <!-- omit in toc -->


## 0.0.2 - 30th August 2026

* updated GitHub Actions checkout references to **v7**;
* added shared **.vscode/settings.json** editor configuration and stopped ignoring **.vscode/**;
* corrected shared project URL metadata in **quench-ruby.gemspec**;


## 0.0.1 - 19th August 2026

* initial gold-standard packaging: **Gemfile**, **quench-ruby.gemspec**, **Rakefile**, GitHub Actions **ruby.yml**, **.sis**, **.editorconfig**, **.gitattributes**, **.gitignore**, helper scripts, and the Synesis markdown set;
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 |
| ---------------- | ------------------------------------------------------------------------------------------ |
| 30th August 2026 | [**Quench.Ruby** 0.0.2](https://github.com/synesissoftware/Quench.Ruby/releases/tag/0.0.2) |
| 19th August 2026 | [**Quench.Ruby** 0.0.1](https://github.com/synesissoftware/Quench.Ruby/releases/tag/0.0.1) |
| 3rd August 2018 | **Quench.Ruby** 0.0.0 released |

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

# Current version of the Quench.Ruby library
VERSION = '0.0.1'
VERSION = '0.0.2'

private
VERSION_PARTS_ = VERSION.split(/[.]/).collect { |n| n.to_i } # :nodoc:
Expand Down
15 changes: 9 additions & 6 deletions quench-ruby.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Purpose: Gemspec for Quench.Ruby library
#
# Created: 19th August 2026
# Updated: 19th August 2026
# Updated: 28th August 2026
#
# ######################################################################## #

Expand All @@ -14,6 +14,9 @@ $:.unshift File.join(File.dirname(__FILE__), 'lib')
require 'quench/version'


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


Gem::Specification.new do |spec|

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

spec.required_ruby_version = [ '>= 2.0' ]

spec.metadata = {
'bug_tracker_uri' => 'https://github.com/synesissoftware/Quench.Ruby/issues',
'changelog_uri' => 'https://github.com/synesissoftware/Quench.Ruby/blob/master/CHANGES.md',
'homepage_uri' => 'https://github.com/synesissoftware/Quench.Ruby',
'source_code_uri' => 'https://github.com/synesissoftware/Quench.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