simple_command_dispatcher 3.0.0 → 3.0.2

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: 4a4ed5a5b6641fe4b56d3756d8561b734e3aa6e97295414c28c5a08464da3393
4
- data.tar.gz: 1fba42efb82e8b4343d68e605bc974fb389f06cc7b0c0e65bc68ebb131409fe9
3
+ metadata.gz: fa98d701eb28cf475d72e5a4b2c3583f2efddccce1d5fa1c93678d7d9d7e2064
4
+ data.tar.gz: 66edc60249913db9118cc486783ca7b4fd1ffea813988c0c35039bf434426ea8
5
5
  SHA512:
6
- metadata.gz: d25a3dd9cbd2b5851198cf635038334d09d66f8393d819ceb49239c5cdaa90403d3a54842f140dc374af599ecb6f5ac25e363fd5b2d27f811c4d7b813efec06c
7
- data.tar.gz: b6a6707c863ae8bfa237a8f119d15468bdeca8a999e7611be89547f8ca5f803df1c5586de4f0085975a7846794f35aba13cd2ce58a2c378c809d717b7c7eede9
6
+ metadata.gz: 707b0d03278d1727a51930cc4b071539c1000e18a79b7a9c1e4345b823f75e8baafe7d0c8436a47eeda0872f7661c23b223b817eea0462de19d9f43ecbc78f26
7
+ data.tar.gz: e01869b77c22e45aee30c45542761f1b6db01bef7f16fd616e8a487b9aba663e19c925877ff53de5c4ac051c3c44751409b6ae3a4776f0e7f7ed7d269059a25e
@@ -0,0 +1,40 @@
1
+ # This workflow uses actions that are not certified by GitHub.
2
+ # They are provided by a third-party and are governed by
3
+ # separate terms of service, privacy policy, and support
4
+ # documentation.
5
+ # This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake.
6
+ # For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
7
+
8
+ name: Ruby
9
+
10
+ on:
11
+ push:
12
+ branches: [ "master" ]
13
+ pull_request:
14
+ branches: [ "master" ]
15
+
16
+ permissions:
17
+ contents: read
18
+
19
+ jobs:
20
+ test:
21
+
22
+ runs-on: ubuntu-latest
23
+ strategy:
24
+ matrix:
25
+ # Use `rbenv install -l` and only use the latest stable
26
+ # version of ruby.
27
+ ruby-version: ["3.0.1", "3.0.6", "3.1.4", "3.2.2"]
28
+
29
+ steps:
30
+ - uses: actions/checkout@v3
31
+ - name: Set up Ruby
32
+ # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
33
+ # change this to (see https://github.com/ruby/setup-ruby#versioning):
34
+ # uses: ruby/setup-ruby@v1
35
+ uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0
36
+ with:
37
+ ruby-version: ${{ matrix.ruby-version }}
38
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
39
+ - name: Run tests
40
+ run: bundle exec rake
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ### Version 3.0.2 [2024-01-31]
2
+ * Update ruby gems.
3
+ ### Version 3.0.1 [2024-01-07]
4
+ * Relax ruby version to Gem::Requirement.new('>= 3.0.1', '< 4.0')
5
+ * Update ruby gems.
1
6
  ### Version 3.0.0 [2023-12-27]
2
7
  * Now requires Ruby >= 3.0
3
8
  * Now requires simple_command '~> 1.0', '>= 1.0.1'; I will try to remove this dependency somehow for users who are not using simple_command.
data/Gemfile CHANGED
@@ -6,7 +6,7 @@ source 'https://rubygems.org'
6
6
  gemspec
7
7
 
8
8
  gem 'bundler', '~> 2.5', '>= 2.5.3'
9
- gem 'colorize', '>= 0.8.1', '< 1.0'
9
+ gem 'colorize', '>= 0.8.1', '< 2.0'
10
10
  gem 'pry-byebug', '>= 3.9', '< 4.0'
11
11
  gem 'rake', '>= 13.0', '< 14.0'
12
12
  gem 'rdoc', '>= 6.4', '< 7.0'
data/Gemfile.lock CHANGED
@@ -1,14 +1,14 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- simple_command_dispatcher (3.0.0)
4
+ simple_command_dispatcher (3.0.2)
5
5
  activesupport (>= 7.0.8, < 8.0)
6
6
  simple_command (~> 1.0, >= 1.0.1)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- activesupport (7.1.2)
11
+ activesupport (7.1.3)
12
12
  base64
13
13
  bigdecimal
14
14
  concurrent-ruby (~> 1.0, >= 1.0.2)
@@ -20,13 +20,13 @@ GEM
20
20
  tzinfo (~> 2.0)
21
21
  ast (2.4.2)
22
22
  base64 (0.2.0)
23
- bigdecimal (3.1.5)
23
+ bigdecimal (3.1.6)
24
24
  byebug (11.1.3)
25
25
  coderay (1.1.3)
26
- colorize (0.8.1)
27
- concurrent-ruby (1.2.2)
26
+ colorize (1.1.0)
27
+ concurrent-ruby (1.2.3)
28
28
  connection_pool (2.4.1)
29
- diff-lcs (1.5.0)
29
+ diff-lcs (1.5.1)
30
30
  drb (2.2.0)
31
31
  ruby2_keywords
32
32
  i18n (1.14.1)
@@ -34,10 +34,10 @@ GEM
34
34
  json (2.7.1)
35
35
  language_server-protocol (3.17.0.3)
36
36
  method_source (1.0.0)
37
- minitest (5.20.0)
37
+ minitest (5.21.2)
38
38
  mutex_m (0.2.0)
39
39
  parallel (1.24.0)
40
- parser (3.2.2.4)
40
+ parser (3.3.0.5)
41
41
  ast (~> 2.4.1)
42
42
  racc
43
43
  pry (0.14.2)
@@ -53,7 +53,7 @@ GEM
53
53
  rake (13.1.0)
54
54
  rdoc (6.6.2)
55
55
  psych (>= 4.0.0)
56
- regexp_parser (2.8.3)
56
+ regexp_parser (2.9.0)
57
57
  rexml (3.2.6)
58
58
  rspec (3.12.0)
59
59
  rspec-core (~> 3.12.0)
@@ -68,11 +68,11 @@ GEM
68
68
  diff-lcs (>= 1.2.0, < 2.0)
69
69
  rspec-support (~> 3.12.0)
70
70
  rspec-support (3.12.1)
71
- rubocop (1.59.0)
71
+ rubocop (1.60.2)
72
72
  json (~> 2.3)
73
73
  language_server-protocol (>= 3.17.0)
74
74
  parallel (~> 1.10)
75
- parser (>= 3.2.2.4)
75
+ parser (>= 3.3.0.2)
76
76
  rainbow (>= 2.2.2, < 4.0)
77
77
  regexp_parser (>= 1.8, < 3.0)
78
78
  rexml (>= 3.2.5, < 4.0)
@@ -81,14 +81,14 @@ GEM
81
81
  unicode-display_width (>= 2.4.0, < 3.0)
82
82
  rubocop-ast (1.30.0)
83
83
  parser (>= 3.2.1.0)
84
- rubocop-capybara (2.19.0)
84
+ rubocop-capybara (2.20.0)
85
85
  rubocop (~> 1.41)
86
- rubocop-factory_bot (2.24.0)
87
- rubocop (~> 1.33)
88
- rubocop-performance (1.20.1)
86
+ rubocop-factory_bot (2.25.1)
87
+ rubocop (~> 1.41)
88
+ rubocop-performance (1.20.2)
89
89
  rubocop (>= 1.48.1, < 2.0)
90
90
  rubocop-ast (>= 1.30.0, < 2.0)
91
- rubocop-rspec (2.25.0)
91
+ rubocop-rspec (2.26.1)
92
92
  rubocop (~> 1.40)
93
93
  rubocop-capybara (~> 2.17)
94
94
  rubocop-factory_bot (~> 2.22)
@@ -109,7 +109,7 @@ PLATFORMS
109
109
 
110
110
  DEPENDENCIES
111
111
  bundler (~> 2.5, >= 2.5.3)
112
- colorize (>= 0.8.1, < 1.0)
112
+ colorize (>= 0.8.1, < 2.0)
113
113
  pry-byebug (>= 3.9, < 4.0)
114
114
  rake (>= 13.0, < 14.0)
115
115
  rdoc (>= 6.4, < 7.0)
data/README.md CHANGED
@@ -1,11 +1,9 @@
1
- [![GitHub version](https://badge.fury.io/gh/gangelo%2Fsimple_command_dispatcher.svg)](https://badge.fury.io/gh/gangelo%2Fsimple_command_dispatcher)
2
- [![Gem Version](https://badge.fury.io/rb/simple_command_dispatcher.svg)](https://badge.fury.io/rb/simple_command_dispatcher)
3
-
1
+ [![Ruby](https://github.com/gangelo/simple_command_dispatcher/actions/workflows/ruby.yml/badge.svg?refresh=2)](https://github.com/gangelo/simple_command_dispatcher/actions/workflows/ruby.yml)
2
+ [![GitHub version](https://badge.fury.io/gh/gangelo%2Fsimple_command_dispatcher.svg?refresh=3)](https://badge.fury.io/gh/gangelo%2Fsimple_command_dispatcher)
3
+ [![Gem Version](https://badge.fury.io/rb/simple_command_dispatcher.svg?refresh=3)](https://badge.fury.io/rb/simple_command_dispatcher)
4
4
  [![](https://ruby-gem-downloads-badge.herokuapp.com/simple_command_dispatcher?type=total)](http://www.rubydoc.info/gems/simple_command_dispatcher/)
5
5
  [![Documentation](http://img.shields.io/badge/docs-rdoc.info-blue.svg)](http://www.rubydoc.info/gems/simple_command_dispatcher/)
6
-
7
6
  [![Report Issues](https://img.shields.io/badge/report-issues-red.svg)](https://github.com/gangelo/simple_command_dispatcher/issues)
8
-
9
7
  [![License](http://img.shields.io/badge/license-MIT-yellowgreen.svg)](#license)
10
8
 
11
9
  # Q. simple_command_dispatcher - what is it?
@@ -2,6 +2,6 @@
2
2
 
3
3
  module SimpleCommand
4
4
  module Dispatcher
5
- VERSION = '3.0.0'
5
+ VERSION = '3.0.2'
6
6
  end
7
7
  end
@@ -35,7 +35,7 @@ Gem::Specification.new do |spec|
35
35
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
36
36
  spec.require_paths = ['lib']
37
37
 
38
- spec.required_ruby_version = '>= 3.0'
38
+ spec.required_ruby_version = Gem::Requirement.new('>= 3.0.1', '< 4.0')
39
39
  spec.add_runtime_dependency 'activesupport', '>= 7.0.8', '< 8.0'
40
40
  spec.add_runtime_dependency 'simple_command', '~> 1.0', '>= 1.0.1'
41
41
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_command_dispatcher
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gene M. Angelo, Jr.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-12-28 00:00:00.000000000 Z
11
+ date: 2024-02-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -63,6 +63,7 @@ extensions: []
63
63
  extra_rdoc_files: []
64
64
  files:
65
65
  - ".github/dependabot.yml"
66
+ - ".github/workflows/ruby.yml"
66
67
  - ".gitignore"
67
68
  - ".reek.yml"
68
69
  - ".rspec"
@@ -99,7 +100,10 @@ required_ruby_version: !ruby/object:Gem::Requirement
99
100
  requirements:
100
101
  - - ">="
101
102
  - !ruby/object:Gem::Version
102
- version: '3.0'
103
+ version: 3.0.1
104
+ - - "<"
105
+ - !ruby/object:Gem::Version
106
+ version: '4.0'
103
107
  required_rubygems_version: !ruby/object:Gem::Requirement
104
108
  requirements:
105
109
  - - ">="