simple_command_dispatcher 3.0.0 → 3.0.1
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 +4 -4
- data/.github/workflows/ruby.yml +40 -0
- data/CHANGELOG.md +3 -0
- data/Gemfile +1 -1
- data/Gemfile.lock +7 -7
- data/README.md +3 -5
- data/lib/simple_command_dispatcher/version.rb +1 -1
- data/simple_command_dispatcher.gemspec +1 -1
- metadata +7 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1cc39951cab0dcd03676c8ab4f5d2a0947734d283fb5b326cfb7bf84581b5120
|
4
|
+
data.tar.gz: 2a9e929c04a0d0f49a73bc5e5fa81400771a855897f4121f1e212098d59bd49c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0aa18423cbdc5d1aec1dabba3a5c93d96cb55271657b4da0835d33f67fbd1375907db6d2515b3e29b5b61342a7aa0bdedef690547986565f556c43fc3ec86099
|
7
|
+
data.tar.gz: 82eae9455e9c056dd013bf27711f67d05eec6892037038a7e926a7353994ec757e02ffd17b3f4a297782d5034946b44b11a3ae7e7b28c1f342d58c93eb1278fb
|
@@ -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,6 @@
|
|
1
|
+
### Version 3.0.1 [2024-01-07]
|
2
|
+
* Relax ruby version to Gem::Requirement.new('>= 3.0.1', '< 4.0')
|
3
|
+
* Update ruby gems.
|
1
4
|
### Version 3.0.0 [2023-12-27]
|
2
5
|
* Now requires Ruby >= 3.0
|
3
6
|
* 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
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
simple_command_dispatcher (3.0.
|
4
|
+
simple_command_dispatcher (3.0.1)
|
5
5
|
activesupport (>= 7.0.8, < 8.0)
|
6
6
|
simple_command (~> 1.0, >= 1.0.1)
|
7
7
|
|
@@ -23,7 +23,7 @@ GEM
|
|
23
23
|
bigdecimal (3.1.5)
|
24
24
|
byebug (11.1.3)
|
25
25
|
coderay (1.1.3)
|
26
|
-
colorize (
|
26
|
+
colorize (1.1.0)
|
27
27
|
concurrent-ruby (1.2.2)
|
28
28
|
connection_pool (2.4.1)
|
29
29
|
diff-lcs (1.5.0)
|
@@ -37,7 +37,7 @@ GEM
|
|
37
37
|
minitest (5.20.0)
|
38
38
|
mutex_m (0.2.0)
|
39
39
|
parallel (1.24.0)
|
40
|
-
parser (3.
|
40
|
+
parser (3.3.0.2)
|
41
41
|
ast (~> 2.4.1)
|
42
42
|
racc
|
43
43
|
pry (0.14.2)
|
@@ -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.
|
84
|
+
rubocop-capybara (2.20.0)
|
85
85
|
rubocop (~> 1.41)
|
86
|
-
rubocop-factory_bot (2.
|
86
|
+
rubocop-factory_bot (2.25.0)
|
87
87
|
rubocop (~> 1.33)
|
88
88
|
rubocop-performance (1.20.1)
|
89
89
|
rubocop (>= 1.48.1, < 2.0)
|
90
90
|
rubocop-ast (>= 1.30.0, < 2.0)
|
91
|
-
rubocop-rspec (2.
|
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, <
|
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
|
-
[](https://github.com/gangelo/simple_command_dispatcher/actions/workflows/ruby.yml)
|
2
|
+
[](https://badge.fury.io/gh/gangelo%2Fsimple_command_dispatcher)
|
3
|
+
[](https://badge.fury.io/rb/simple_command_dispatcher)
|
4
4
|
[](http://www.rubydoc.info/gems/simple_command_dispatcher/)
|
5
5
|
[](http://www.rubydoc.info/gems/simple_command_dispatcher/)
|
6
|
-
|
7
6
|
[](https://github.com/gangelo/simple_command_dispatcher/issues)
|
8
|
-
|
9
7
|
[](#license)
|
10
8
|
|
11
9
|
# Q. simple_command_dispatcher - what is it?
|
@@ -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.
|
4
|
+
version: 3.0.1
|
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:
|
11
|
+
date: 2024-01-07 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:
|
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
|
- - ">="
|