dsu 3.0.1 → 3.0.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.
- checksums.yaml +4 -4
- data/.ruby-version +1 -1
- data/CHANGELOG.md +12 -0
- data/Gemfile +5 -4
- data/Gemfile.lock +54 -49
- data/README.md +7 -7
- data/lib/dsu/presenters/project/list_presenter.rb +1 -1
- data/lib/dsu/version.rb +1 -1
- metadata +24 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b80a71b8d3ed709188618098b10f6318cbbce70d562420ecf9df6dba26987676
|
|
4
|
+
data.tar.gz: 1ea9efbe67dbf7a7ea70d3a70435fb9e9eac5e198c278fb2c415ebf7ed289dbf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8f003eb645facb2edc65a98e9903568010a23a6f65cf701d173f52e05a34f96da462a3b42f1d9eed7ce12e0b6a88f3b2081742bcd278a1adbaab2208044c1ba8
|
|
7
|
+
data.tar.gz: 459546e54e088b82c1b0025ada39e9d3478ce4f87a068ae06ec6ec37511bfc996f366064602b91e939da3836d56efd225445e019d916ec1d60493c0ee78617b1
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.7
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [3.0.3] - 2024-08-03
|
|
6
|
+
|
|
7
|
+
### Changes
|
|
8
|
+
[x] Update ruby gems.
|
|
9
|
+
[x] Update rexml gem to patch CVE.
|
|
10
|
+
|
|
11
|
+
## [3.0.2] - 2024-05-18
|
|
12
|
+
|
|
13
|
+
### Changes
|
|
14
|
+
[x] Update ruby gems.
|
|
15
|
+
[x] Update GitHub Actions to include testing against ruby versions '3.0.7', '3.1', '3.2' and '3.3' on ubuntu-latest, macos-latest and windows-latest.
|
|
16
|
+
|
|
5
17
|
## [3.0.1] - 2024-02-19
|
|
6
18
|
|
|
7
19
|
### Changes
|
data/Gemfile
CHANGED
|
@@ -10,10 +10,11 @@ gem 'rake', '>= 13.0', '< 14.0'
|
|
|
10
10
|
|
|
11
11
|
group :development do
|
|
12
12
|
gem 'reek', '>= 6.1', '< 7.0'
|
|
13
|
-
gem 'rubocop', '>= 1.
|
|
14
|
-
gem 'rubocop-
|
|
13
|
+
gem 'rubocop', '>= 1.65', '< 2.0'
|
|
14
|
+
gem 'rubocop-factory_bot', '~> 2.26', '>= 2.26.1'
|
|
15
|
+
gem 'rubocop-performance', '>= 1.21.1', '< 2.0'
|
|
15
16
|
gem 'rubocop-rake', '>= 0.6', '< 1.0'
|
|
16
|
-
gem 'rubocop-rspec', '
|
|
17
|
+
gem 'rubocop-rspec', '~> 3.0', '>= 3.0.3'
|
|
17
18
|
end
|
|
18
19
|
|
|
19
20
|
group :test do
|
|
@@ -22,7 +23,7 @@ group :test do
|
|
|
22
23
|
end
|
|
23
24
|
|
|
24
25
|
group :development, :test do
|
|
25
|
-
gem 'dotenv', '
|
|
26
|
+
gem 'dotenv', '~> 3.1', '>= 3.1.2'
|
|
26
27
|
gem 'factory_bot', '~> 6.3'
|
|
27
28
|
gem 'ffaker', '~> 2.21'
|
|
28
29
|
gem 'pry-byebug', '>= 3.9', '< 4.0'
|
data/Gemfile.lock
CHANGED
|
@@ -1,20 +1,21 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
dsu (3.0.
|
|
4
|
+
dsu (3.0.3)
|
|
5
5
|
activemodel (>= 7.0.8, < 8.0)
|
|
6
6
|
activesupport (>= 7.0.8, < 8.0)
|
|
7
7
|
colorize (>= 1.1, < 2.0)
|
|
8
8
|
os (>= 1.1, < 2.0)
|
|
9
9
|
thor (>= 1.2, < 2.0)
|
|
10
10
|
thor_nested_subcommand (>= 1.0, < 2.0)
|
|
11
|
+
tzinfo-data (~> 1.2024, >= 1.2024.1)
|
|
11
12
|
|
|
12
13
|
GEM
|
|
13
14
|
remote: https://rubygems.org/
|
|
14
15
|
specs:
|
|
15
|
-
activemodel (7.1.3)
|
|
16
|
-
activesupport (= 7.1.3)
|
|
17
|
-
activesupport (7.1.3)
|
|
16
|
+
activemodel (7.1.3.4)
|
|
17
|
+
activesupport (= 7.1.3.4)
|
|
18
|
+
activesupport (7.1.3.4)
|
|
18
19
|
base64
|
|
19
20
|
bigdecimal
|
|
20
21
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
@@ -26,30 +27,29 @@ GEM
|
|
|
26
27
|
tzinfo (~> 2.0)
|
|
27
28
|
ast (2.4.2)
|
|
28
29
|
base64 (0.2.0)
|
|
29
|
-
bigdecimal (3.1.
|
|
30
|
+
bigdecimal (3.1.8)
|
|
30
31
|
byebug (11.1.3)
|
|
31
32
|
coderay (1.1.3)
|
|
32
33
|
colorize (1.1.0)
|
|
33
|
-
concurrent-ruby (1.
|
|
34
|
+
concurrent-ruby (1.3.3)
|
|
34
35
|
connection_pool (2.4.1)
|
|
35
36
|
diff-lcs (1.5.1)
|
|
36
|
-
docile (1.4.
|
|
37
|
-
dotenv (
|
|
38
|
-
drb (2.2.
|
|
39
|
-
|
|
40
|
-
dry-configurable (1.1.0)
|
|
37
|
+
docile (1.4.1)
|
|
38
|
+
dotenv (3.1.2)
|
|
39
|
+
drb (2.2.1)
|
|
40
|
+
dry-configurable (1.2.0)
|
|
41
41
|
dry-core (~> 1.0, < 2)
|
|
42
42
|
zeitwerk (~> 2.6)
|
|
43
43
|
dry-core (1.0.1)
|
|
44
44
|
concurrent-ruby (~> 1.0)
|
|
45
45
|
zeitwerk (~> 2.6)
|
|
46
|
-
dry-inflector (1.
|
|
46
|
+
dry-inflector (1.1.0)
|
|
47
47
|
dry-initializer (3.1.1)
|
|
48
48
|
dry-logic (1.5.0)
|
|
49
49
|
concurrent-ruby (~> 1.0)
|
|
50
50
|
dry-core (~> 1.0, < 2)
|
|
51
51
|
zeitwerk (~> 2.6)
|
|
52
|
-
dry-schema (1.13.
|
|
52
|
+
dry-schema (1.13.4)
|
|
53
53
|
concurrent-ruby (~> 1.0)
|
|
54
54
|
dry-configurable (~> 1.0, >= 1.0.1)
|
|
55
55
|
dry-core (~> 1.0, < 2)
|
|
@@ -67,16 +67,16 @@ GEM
|
|
|
67
67
|
factory_bot (6.4.6)
|
|
68
68
|
activesupport (>= 5.0.0)
|
|
69
69
|
ffaker (2.23.0)
|
|
70
|
-
i18n (1.14.
|
|
70
|
+
i18n (1.14.5)
|
|
71
71
|
concurrent-ruby (~> 1.0)
|
|
72
|
-
json (2.7.
|
|
72
|
+
json (2.7.2)
|
|
73
73
|
language_server-protocol (3.17.0.3)
|
|
74
|
-
method_source (1.
|
|
75
|
-
minitest (5.
|
|
74
|
+
method_source (1.1.0)
|
|
75
|
+
minitest (5.24.1)
|
|
76
76
|
mutex_m (0.2.0)
|
|
77
77
|
os (1.1.4)
|
|
78
|
-
parallel (1.
|
|
79
|
-
parser (3.3.0
|
|
78
|
+
parallel (1.25.1)
|
|
79
|
+
parser (3.3.4.0)
|
|
80
80
|
ast (~> 2.4.1)
|
|
81
81
|
racc
|
|
82
82
|
pry (0.14.2)
|
|
@@ -85,78 +85,82 @@ GEM
|
|
|
85
85
|
pry-byebug (3.10.1)
|
|
86
86
|
byebug (~> 11.0)
|
|
87
87
|
pry (>= 0.13, < 0.15)
|
|
88
|
-
racc (1.
|
|
88
|
+
racc (1.8.1)
|
|
89
89
|
rainbow (3.1.1)
|
|
90
|
-
rake (13.1
|
|
90
|
+
rake (13.2.1)
|
|
91
91
|
reek (6.3.0)
|
|
92
92
|
dry-schema (~> 1.13.0)
|
|
93
93
|
parser (~> 3.3.0)
|
|
94
94
|
rainbow (>= 2.0, < 4.0)
|
|
95
95
|
rexml (~> 3.1)
|
|
96
|
-
regexp_parser (2.9.
|
|
97
|
-
rexml (3.
|
|
96
|
+
regexp_parser (2.9.2)
|
|
97
|
+
rexml (3.3.4)
|
|
98
|
+
strscan
|
|
98
99
|
rspec (3.13.0)
|
|
99
100
|
rspec-core (~> 3.13.0)
|
|
100
101
|
rspec-expectations (~> 3.13.0)
|
|
101
102
|
rspec-mocks (~> 3.13.0)
|
|
102
103
|
rspec-core (3.13.0)
|
|
103
104
|
rspec-support (~> 3.13.0)
|
|
104
|
-
rspec-expectations (3.13.
|
|
105
|
+
rspec-expectations (3.13.1)
|
|
105
106
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
106
107
|
rspec-support (~> 3.13.0)
|
|
107
|
-
rspec-mocks (3.13.
|
|
108
|
+
rspec-mocks (3.13.1)
|
|
108
109
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
109
110
|
rspec-support (~> 3.13.0)
|
|
110
|
-
rspec-support (3.13.
|
|
111
|
-
rubocop (1.
|
|
111
|
+
rspec-support (3.13.1)
|
|
112
|
+
rubocop (1.65.1)
|
|
112
113
|
json (~> 2.3)
|
|
113
114
|
language_server-protocol (>= 3.17.0)
|
|
114
115
|
parallel (~> 1.10)
|
|
115
116
|
parser (>= 3.3.0.2)
|
|
116
117
|
rainbow (>= 2.2.2, < 4.0)
|
|
117
|
-
regexp_parser (>=
|
|
118
|
+
regexp_parser (>= 2.4, < 3.0)
|
|
118
119
|
rexml (>= 3.2.5, < 4.0)
|
|
119
|
-
rubocop-ast (>= 1.
|
|
120
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
|
120
121
|
ruby-progressbar (~> 1.7)
|
|
121
122
|
unicode-display_width (>= 2.4.0, < 3.0)
|
|
122
|
-
rubocop-ast (1.
|
|
123
|
-
parser (>= 3.
|
|
124
|
-
rubocop-
|
|
125
|
-
rubocop (~> 1.
|
|
126
|
-
rubocop-
|
|
127
|
-
rubocop (~> 1.41)
|
|
128
|
-
rubocop-performance (1.20.2)
|
|
123
|
+
rubocop-ast (1.31.3)
|
|
124
|
+
parser (>= 3.3.1.0)
|
|
125
|
+
rubocop-factory_bot (2.26.1)
|
|
126
|
+
rubocop (~> 1.61)
|
|
127
|
+
rubocop-performance (1.21.1)
|
|
129
128
|
rubocop (>= 1.48.1, < 2.0)
|
|
130
|
-
rubocop-ast (>= 1.
|
|
129
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
|
131
130
|
rubocop-rake (0.6.0)
|
|
132
131
|
rubocop (~> 1.0)
|
|
133
|
-
rubocop-rspec (
|
|
134
|
-
rubocop (~> 1.
|
|
135
|
-
rubocop-capybara (~> 2.17)
|
|
136
|
-
rubocop-factory_bot (~> 2.22)
|
|
132
|
+
rubocop-rspec (3.0.3)
|
|
133
|
+
rubocop (~> 1.61)
|
|
137
134
|
ruby-progressbar (1.13.0)
|
|
138
|
-
ruby2_keywords (0.0.5)
|
|
139
135
|
simplecov (0.22.0)
|
|
140
136
|
docile (~> 1.1)
|
|
141
137
|
simplecov-html (~> 0.11)
|
|
142
138
|
simplecov_json_formatter (~> 0.1)
|
|
143
139
|
simplecov-html (0.12.3)
|
|
144
140
|
simplecov_json_formatter (0.1.4)
|
|
145
|
-
|
|
146
|
-
|
|
141
|
+
strscan (3.1.0)
|
|
142
|
+
thor (1.3.1)
|
|
143
|
+
thor_nested_subcommand (1.0.9)
|
|
147
144
|
tzinfo (2.0.6)
|
|
148
145
|
concurrent-ruby (~> 1.0)
|
|
146
|
+
tzinfo-data (1.2024.1)
|
|
147
|
+
tzinfo (>= 1.0.0)
|
|
149
148
|
unicode-display_width (2.5.0)
|
|
150
|
-
zeitwerk (2.6.
|
|
149
|
+
zeitwerk (2.6.17)
|
|
151
150
|
|
|
152
151
|
PLATFORMS
|
|
152
|
+
arm64-darwin-22
|
|
153
|
+
arm64-darwin-23
|
|
154
|
+
x64-mingw-ucrt
|
|
155
|
+
x64-mingw32
|
|
153
156
|
x86_64-darwin-19
|
|
157
|
+
x86_64-darwin-20
|
|
154
158
|
x86_64-darwin-21
|
|
155
159
|
x86_64-linux
|
|
156
160
|
|
|
157
161
|
DEPENDENCIES
|
|
158
162
|
bundler (>= 2.5, < 3.0)
|
|
159
|
-
dotenv (
|
|
163
|
+
dotenv (~> 3.1, >= 3.1.2)
|
|
160
164
|
dsu!
|
|
161
165
|
factory_bot (~> 6.3)
|
|
162
166
|
ffaker (~> 2.21)
|
|
@@ -164,10 +168,11 @@ DEPENDENCIES
|
|
|
164
168
|
rake (>= 13.0, < 14.0)
|
|
165
169
|
reek (>= 6.1, < 7.0)
|
|
166
170
|
rspec (>= 3.12, < 4.0)
|
|
167
|
-
rubocop (>= 1.
|
|
168
|
-
rubocop-
|
|
171
|
+
rubocop (>= 1.65, < 2.0)
|
|
172
|
+
rubocop-factory_bot (~> 2.26, >= 2.26.1)
|
|
173
|
+
rubocop-performance (>= 1.21.1, < 2.0)
|
|
169
174
|
rubocop-rake (>= 0.6, < 1.0)
|
|
170
|
-
rubocop-rspec (
|
|
175
|
+
rubocop-rspec (~> 3.0, >= 3.0.3)
|
|
171
176
|
simplecov (>= 0.22.0, < 1.0)
|
|
172
177
|
|
|
173
178
|
BUNDLED WITH
|
data/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# `dsu`
|
|
2
2
|
|
|
3
3
|
[](https://github.com/gangelo/dsu/actions/workflows/ruby.yml)
|
|
4
|
-
[](https://badge.fury.io/gh/gangelo%2Fdsu)
|
|
5
|
+
[](https://badge.fury.io/rb/dsu)
|
|
6
6
|
[](http://www.rubydoc.info/gems/dsu/)
|
|
7
7
|
[](https://github.com/gangelo/dsu/issues)
|
|
8
8
|
[](#license)
|
|
@@ -29,10 +29,10 @@ The [dsu wiki](https://github.com/gangelo/dsu/wiki) is currently the gold standa
|
|
|
29
29
|
* Visit the [How I use dsu daily as an Agile developer](https://github.com/gangelo/dsu/wiki/How-I-use-dsu-daily-as-an-Agile-developer) wiki for examples of how _I_ use `dsu` on a daily basis.
|
|
30
30
|
|
|
31
31
|
# Supported ruby versions
|
|
32
|
-
`dsu` _should_ work with any ruby version `['>= 3.0.
|
|
33
|
-
- 3.0.
|
|
34
|
-
- 3.
|
|
35
|
-
- 3.
|
|
36
|
-
- 3.
|
|
32
|
+
`dsu` _should_ work with any ruby version `['>= 3.0.7', '< 4.0']`; however, `dsu` is currently tested against the ubuntu-latest, macos-latest and windows-latest platforms, using the following ruby versions:
|
|
33
|
+
- 3.0.7
|
|
34
|
+
- 3.1
|
|
35
|
+
- 3.2
|
|
36
|
+
- 3.3
|
|
37
37
|
|
|
38
38
|
Copyright (c) 2023-2024 Gene Angelo. See [LICENSE](https://github.com/gangelo/dsu/blob/main/LICENSE.txt) for details.
|
data/lib/dsu/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dsu
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.3
|
|
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: 2024-
|
|
11
|
+
date: 2024-08-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -130,6 +130,26 @@ dependencies:
|
|
|
130
130
|
- - "<"
|
|
131
131
|
- !ruby/object:Gem::Version
|
|
132
132
|
version: '2.0'
|
|
133
|
+
- !ruby/object:Gem::Dependency
|
|
134
|
+
name: tzinfo-data
|
|
135
|
+
requirement: !ruby/object:Gem::Requirement
|
|
136
|
+
requirements:
|
|
137
|
+
- - "~>"
|
|
138
|
+
- !ruby/object:Gem::Version
|
|
139
|
+
version: '1.2024'
|
|
140
|
+
- - ">="
|
|
141
|
+
- !ruby/object:Gem::Version
|
|
142
|
+
version: 1.2024.1
|
|
143
|
+
type: :runtime
|
|
144
|
+
prerelease: false
|
|
145
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
146
|
+
requirements:
|
|
147
|
+
- - "~>"
|
|
148
|
+
- !ruby/object:Gem::Version
|
|
149
|
+
version: '1.2024'
|
|
150
|
+
- - ">="
|
|
151
|
+
- !ruby/object:Gem::Version
|
|
152
|
+
version: 1.2024.1
|
|
133
153
|
description: |2
|
|
134
154
|
dsu is ruby gem that enables anyone practicing Agile methodology to record, keep track of, and manage their daily standup (DSU) activities.
|
|
135
155
|
|
|
@@ -370,7 +390,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
370
390
|
requirements:
|
|
371
391
|
- - ">="
|
|
372
392
|
- !ruby/object:Gem::Version
|
|
373
|
-
version: 3.0.
|
|
393
|
+
version: 3.0.7
|
|
374
394
|
- - "<"
|
|
375
395
|
- !ruby/object:Gem::Version
|
|
376
396
|
version: '4.0'
|
|
@@ -380,7 +400,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
380
400
|
- !ruby/object:Gem::Version
|
|
381
401
|
version: '0'
|
|
382
402
|
requirements: []
|
|
383
|
-
rubygems_version: 3.2.
|
|
403
|
+
rubygems_version: 3.2.33
|
|
384
404
|
signing_key:
|
|
385
405
|
specification_version: 4
|
|
386
406
|
summary: dsu (Agile Daily Stand Up/DSU) mini-manager.
|