clasp-ruby 0.23.1 → 0.23.3

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.
data/lib/clasp/version.rb CHANGED
@@ -1,17 +1,17 @@
1
-
1
+ # frozen_string_literal: true
2
2
  # ######################################################################## #
3
3
  # File: clasp/version.rb
4
4
  #
5
5
  # Purpose: Version for CLASP.Ruby library
6
6
  #
7
7
  # Created: 16th November 2014
8
- # Updated: 6th March 2025
8
+ # Updated: 27th August 2026
9
9
  #
10
- # Home: http://github.com/synesissoftware/CLASP.Ruby
10
+ # Home: https://github.com/synesissoftware/CLASP.Ruby
11
11
  #
12
12
  # Author: Matthew Wilson
13
13
  #
14
- # Copyright (c) 2019-2025, Matthew Wilson and Synesis Information Systems
14
+ # Copyright (c) 2019-2026, Matthew Wilson and Synesis Information Systems
15
15
  # Copyright (c) 2014-2019, Matthew Wilson and Synesis Software
16
16
  # All rights reserved.
17
17
  #
@@ -52,7 +52,7 @@
52
52
  module CLASP
53
53
 
54
54
  # Current version of the CLASP.Ruby library
55
- VERSION = '0.23.1'
55
+ VERSION = '0.23.3'
56
56
 
57
57
  private
58
58
  # @!visibility private
data/lib/clasp-ruby.rb CHANGED
@@ -1,13 +1,13 @@
1
-
1
+ # frozen_string_literal: true
2
2
  # ######################################################################## #
3
3
  # File: clasp-ruby.rb
4
4
  #
5
5
  # Purpose: Top-level source for CLASP.ruby library [alternate]
6
6
  #
7
7
  # Created: 13th October 2014
8
- # Updated: 6th March 2025
8
+ # Updated: 15th August 2026
9
9
  #
10
- # Home: http://github.com/synesissoftware/CLASP.Ruby
10
+ # Home: https://github.com/synesissoftware/CLASP.Ruby
11
11
  #
12
12
  # Author: Matthew Wilson
13
13
  #
data/lib/clasp.rb CHANGED
@@ -1,13 +1,13 @@
1
-
1
+ # frozen_string_literal: true
2
2
  # ######################################################################## #
3
3
  # File: clasp.rb
4
4
  #
5
5
  # Purpose: Top-level source for CLASP.ruby library
6
6
  #
7
7
  # Created: 13th October 2014
8
- # Updated: 6th March 2025
8
+ # Updated: 15th August 2026
9
9
  #
10
- # Home: http://github.com/synesissoftware/CLASP.Ruby
10
+ # Home: https://github.com/synesissoftware/CLASP.Ruby
11
11
  #
12
12
  # Author: Matthew Wilson
13
13
  #
metadata CHANGED
@@ -1,40 +1,57 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: clasp-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.23.1
4
+ version: 0.23.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Wilson
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-03-06 00:00:00.000000000 Z
11
+ date: 2026-08-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: xqsr3
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.39'
19
+ version: 0.39.5
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '1.0'
20
23
  type: :development
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: 0.39.5
30
+ - - "<"
25
31
  - !ruby/object:Gem::Version
26
- version: '0.39'
32
+ version: '1.0'
27
33
  description: |
28
34
  Command-Line Argument Sorting and Parsing library that provides a powerful abstraction of command-line interpretation facilities.
29
35
 
30
36
  CLASP.Ruby is a Ruby port of the popular CLASP (C/C++) library, and provides declarative specification of command-line flags and options, aliasing, flag combination, UNIX de-facto standard flag processing, and a number of utility functions for expressing usage and version information.
31
- email: matthew@synesis.com.au
37
+ email:
38
+ - matthew@synesis.com.au
32
39
  executables: []
33
40
  extensions: []
34
41
  extra_rdoc_files: []
35
42
  files:
43
+ - AUTHORS.md
44
+ - CHANGES.md
45
+ - CONTRIBUTING.md
46
+ - EXAMPLES.md
47
+ - FAQ.md
48
+ - INSTALL.md
36
49
  - LICENSE
50
+ - NEWS.md
37
51
  - README.md
52
+ - Rakefile
53
+ - SECURITY.md
54
+ - TODO.md
38
55
  - examples/cr-example.rb
39
56
  - examples/flag_and_option_specifications.md
40
57
  - examples/flag_and_option_specifications.rb
@@ -74,11 +91,15 @@ files:
74
91
  - test/unit/tc_usage.rb
75
92
  - test/unit/tc_with_action.rb
76
93
  - test/unit/ts_all.rb
77
- homepage: http://github.com/synesissoftware/CLASP.Ruby
94
+ homepage: https://github.com/synesissoftware/CLASP.Ruby
78
95
  licenses:
79
96
  - BSD-3-Clause
80
- metadata: {}
81
- post_install_message:
97
+ metadata:
98
+ bug_tracker_uri: https://github.com/synesissoftware/CLASP.Ruby/issues
99
+ changelog_uri: https://github.com/synesissoftware/CLASP.Ruby/blob/master/CHANGES.md
100
+ homepage_uri: https://github.com/synesissoftware/CLASP.Ruby
101
+ source_code_uri: https://github.com/synesissoftware/CLASP.Ruby
102
+ post_install_message:
82
103
  rdoc_options: []
83
104
  require_paths:
84
105
  - lib
@@ -87,18 +108,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
87
108
  - - ">="
88
109
  - !ruby/object:Gem::Version
89
110
  version: 1.9.3
90
- - - "<"
91
- - !ruby/object:Gem::Version
92
- version: '4'
93
111
  required_rubygems_version: !ruby/object:Gem::Requirement
94
112
  requirements:
95
113
  - - ">="
96
114
  - !ruby/object:Gem::Version
97
115
  version: '0'
98
116
  requirements: []
99
- rubyforge_project:
100
- rubygems_version: 2.7.6.3
101
- signing_key:
117
+ rubygems_version: 3.3.7
118
+ signing_key:
102
119
  specification_version: 4
103
- summary: CLASP.Ruby
120
+ summary: Command-Line Argument Sorting and Parsing, for Ruby
104
121
  test_files: []