clasp-ruby 0.23.1 → 0.23.4

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: 30th 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.4'
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,56 @@
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.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Wilson
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2025-03-06 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: xqsr3
15
14
  requirement: !ruby/object:Gem::Requirement
16
15
  requirements:
17
- - - "~>"
16
+ - - ">="
18
17
  - !ruby/object:Gem::Version
19
- version: '0.39'
18
+ version: 0.39.5
19
+ - - "<"
20
+ - !ruby/object:Gem::Version
21
+ version: '1.0'
20
22
  type: :development
21
23
  prerelease: false
22
24
  version_requirements: !ruby/object:Gem::Requirement
23
25
  requirements:
24
- - - "~>"
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ version: 0.39.5
29
+ - - "<"
25
30
  - !ruby/object:Gem::Version
26
- version: '0.39'
31
+ version: '1.0'
27
32
  description: |
28
33
  Command-Line Argument Sorting and Parsing library that provides a powerful abstraction of command-line interpretation facilities.
29
34
 
30
35
  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
36
+ email:
37
+ - matthew@synesis.com.au
32
38
  executables: []
33
39
  extensions: []
34
40
  extra_rdoc_files: []
35
41
  files:
42
+ - AUTHORS.md
43
+ - CHANGES.md
44
+ - CONTRIBUTING.md
45
+ - EXAMPLES.md
46
+ - FAQ.md
47
+ - INSTALL.md
36
48
  - LICENSE
49
+ - NEWS.md
37
50
  - README.md
51
+ - Rakefile
52
+ - SECURITY.md
53
+ - TODO.md
38
54
  - examples/cr-example.rb
39
55
  - examples/flag_and_option_specifications.md
40
56
  - examples/flag_and_option_specifications.rb
@@ -74,11 +90,14 @@ files:
74
90
  - test/unit/tc_usage.rb
75
91
  - test/unit/tc_with_action.rb
76
92
  - test/unit/ts_all.rb
77
- homepage: http://github.com/synesissoftware/CLASP.Ruby
93
+ homepage: https://github.com/synesissoftware/CLASP.Ruby
78
94
  licenses:
79
95
  - BSD-3-Clause
80
- metadata: {}
81
- post_install_message:
96
+ metadata:
97
+ bug_tracker_uri: https://github.com/synesissoftware/CLASP.Ruby/issues
98
+ changelog_uri: https://github.com/synesissoftware/CLASP.Ruby/blob/master/CHANGES.md
99
+ homepage_uri: https://github.com/synesissoftware/CLASP.Ruby
100
+ source_code_uri: https://github.com/synesissoftware/CLASP.Ruby
82
101
  rdoc_options: []
83
102
  require_paths:
84
103
  - lib
@@ -87,18 +106,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
87
106
  - - ">="
88
107
  - !ruby/object:Gem::Version
89
108
  version: 1.9.3
90
- - - "<"
91
- - !ruby/object:Gem::Version
92
- version: '4'
93
109
  required_rubygems_version: !ruby/object:Gem::Requirement
94
110
  requirements:
95
111
  - - ">="
96
112
  - !ruby/object:Gem::Version
97
113
  version: '0'
98
114
  requirements: []
99
- rubyforge_project:
100
- rubygems_version: 2.7.6.3
101
- signing_key:
115
+ rubygems_version: 3.6.9
102
116
  specification_version: 4
103
- summary: CLASP.Ruby
117
+ summary: Command-Line Argument Sorting and Parsing, for Ruby
104
118
  test_files: []