dsu 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: 30c74cb944a80caf60aa48873b29ccb51ae72036b3ad23ed8ed2ca19426837bc
4
- data.tar.gz: 1bb2b22d1895eadb4e78019b6a02dc087d2cc01ae8b34c1ebbe10f5c2966b6f1
3
+ metadata.gz: 35464809c5e821424202e2849d1a4fd43d31a5a3983a96e6177d8abd69980503
4
+ data.tar.gz: e64af18269d7ebf19cf9aac1fe21c005b6d05c7af5e2b325438a6feb88f42b00
5
5
  SHA512:
6
- metadata.gz: f7ab8726be6364a3d06b673bf2f76f5c0b815105a90eaa168abb00a129d83b8627431965e756b3ada6570451ccccf6cbcaf36b82cf568557a03244b776dfffce
7
- data.tar.gz: c455af559a5d18be7e4634be35e917038d566de135e7a9bcfca4c7408d6a9eb07c51e9c4e27d218dffeafc338b4f72bff52d25430efbed26eda0959fe56e93f3
6
+ metadata.gz: 481276284539b85413bd4e6531cf535ba6dfef436ab7aecf25548a84b039672872fb589dde71ea8a7f521b2ae47e3248faab545319be095ad8ad26eadd8428bc
7
+ data.tar.gz: '093572942c6a5e4238a1f6d9b342188ddcc9670807ffb8d86e41642ce44245bbbd952500da071047d744fee0824c80dbdca437feb49e3ba5d8d99efb73255be7'
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.0.1
1
+ 3.0.7
data/CHANGELOG.md CHANGED
@@ -2,6 +2,19 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [3.0.2] - 2024-05-18
6
+
7
+ ### Changes
8
+ [x] Update ruby gems.
9
+ [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.
10
+
11
+ ## [3.0.1] - 2024-02-19
12
+
13
+ ### Changes
14
+ [x] Update ruby gems.
15
+ [x] Update Gemfile to include gem groups for development and testing.
16
+ [x] Update .gemspec file post_install_message to include wiki link for new dsu project command.
17
+
5
18
  ## [3.0.0] - 2024-02-17
6
19
 
7
20
  ### Enhancements
data/Gemfile CHANGED
@@ -5,15 +5,25 @@ source 'https://rubygems.org'
5
5
  # Specify your gem's dependencies in dsu.gemspec
6
6
  gemspec
7
7
 
8
- gem 'dotenv', '~> 2.8', '>= 2.8.1'
9
- gem 'factory_bot', '~> 6.3'
10
- gem 'ffaker', '~> 2.21'
11
- gem 'pry-byebug', '~> 3.9'
12
- gem 'rake', '~> 13.0'
13
- gem 'reek', '~> 6.1', '>= 6.1.1'
14
- gem 'rspec', '~> 3.0'
15
- gem 'rubocop', '~> 1.50', '>= 1.50.2'
16
- gem 'rubocop-performance', '~> 1.19'
17
- gem 'rubocop-rake', '~> 0.6.0'
18
- gem 'rubocop-rspec', '~> 2.23'
19
- gem 'simplecov', '~> 0.22.0'
8
+ gem 'bundler', '>= 2.5', '< 3.0'
9
+ gem 'rake', '>= 13.0', '< 14.0'
10
+
11
+ group :development do
12
+ gem 'reek', '>= 6.1', '< 7.0'
13
+ gem 'rubocop', '>= 1.35', '< 2.0'
14
+ gem 'rubocop-performance', '>= 1.14', '< 2.0'
15
+ gem 'rubocop-rake', '>= 0.6', '< 1.0'
16
+ gem 'rubocop-rspec', '>= 2.12', '< 3.0'
17
+ end
18
+
19
+ group :test do
20
+ gem 'rspec', '>= 3.12', '< 4.0'
21
+ gem 'simplecov', '>= 0.22.0', '< 1.0'
22
+ end
23
+
24
+ group :development, :test do
25
+ gem 'dotenv', '>= 2.8', '< 3.0'
26
+ gem 'factory_bot', '~> 6.3'
27
+ gem 'ffaker', '~> 2.21'
28
+ gem 'pry-byebug', '>= 3.9', '< 4.0'
29
+ end
data/Gemfile.lock CHANGED
@@ -1,20 +1,21 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- dsu (3.0.0)
4
+ dsu (3.0.2)
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.3)
17
+ activesupport (= 7.1.3.3)
18
+ activesupport (7.1.3.3)
18
19
  base64
19
20
  bigdecimal
20
21
  concurrent-ruby (~> 1.0, >= 1.0.2)
@@ -26,7 +27,7 @@ GEM
26
27
  tzinfo (~> 2.0)
27
28
  ast (2.4.2)
28
29
  base64 (0.2.0)
29
- bigdecimal (3.1.6)
30
+ bigdecimal (3.1.8)
30
31
  byebug (11.1.3)
31
32
  coderay (1.1.3)
32
33
  colorize (1.1.0)
@@ -35,8 +36,7 @@ GEM
35
36
  diff-lcs (1.5.1)
36
37
  docile (1.4.0)
37
38
  dotenv (2.8.1)
38
- drb (2.2.0)
39
- ruby2_keywords
39
+ drb (2.2.1)
40
40
  dry-configurable (1.1.0)
41
41
  dry-core (~> 1.0, < 2)
42
42
  zeitwerk (~> 2.6)
@@ -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.1)
70
+ i18n (1.14.5)
71
71
  concurrent-ruby (~> 1.0)
72
- json (2.7.1)
72
+ json (2.7.2)
73
73
  language_server-protocol (3.17.0.3)
74
- method_source (1.0.0)
75
- minitest (5.22.2)
74
+ method_source (1.1.0)
75
+ minitest (5.23.0)
76
76
  mutex_m (0.2.0)
77
77
  os (1.1.4)
78
78
  parallel (1.24.0)
79
- parser (3.3.0.5)
79
+ parser (3.3.1.0)
80
80
  ast (~> 2.4.1)
81
81
  racc
82
82
  pry (0.14.2)
@@ -85,16 +85,17 @@ GEM
85
85
  pry-byebug (3.10.1)
86
86
  byebug (~> 11.0)
87
87
  pry (>= 0.13, < 0.15)
88
- racc (1.7.3)
88
+ racc (1.8.0)
89
89
  rainbow (3.1.1)
90
- rake (13.1.0)
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.0)
97
- rexml (3.2.6)
96
+ regexp_parser (2.9.2)
97
+ rexml (3.2.8)
98
+ strscan (>= 3.0.9)
98
99
  rspec (3.13.0)
99
100
  rspec-core (~> 3.13.0)
100
101
  rspec-expectations (~> 3.13.0)
@@ -104,11 +105,11 @@ GEM
104
105
  rspec-expectations (3.13.0)
105
106
  diff-lcs (>= 1.2.0, < 2.0)
106
107
  rspec-support (~> 3.13.0)
107
- rspec-mocks (3.13.0)
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.0)
111
- rubocop (1.60.2)
111
+ rspec-support (3.13.1)
112
+ rubocop (1.63.5)
112
113
  json (~> 2.3)
113
114
  language_server-protocol (>= 3.17.0)
114
115
  parallel (~> 1.10)
@@ -116,58 +117,67 @@ GEM
116
117
  rainbow (>= 2.2.2, < 4.0)
117
118
  regexp_parser (>= 1.8, < 3.0)
118
119
  rexml (>= 3.2.5, < 4.0)
119
- rubocop-ast (>= 1.30.0, < 2.0)
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.30.0)
123
- parser (>= 3.2.1.0)
123
+ rubocop-ast (1.31.3)
124
+ parser (>= 3.3.1.0)
124
125
  rubocop-capybara (2.20.0)
125
126
  rubocop (~> 1.41)
126
127
  rubocop-factory_bot (2.25.1)
127
128
  rubocop (~> 1.41)
128
- rubocop-performance (1.20.2)
129
+ rubocop-performance (1.21.0)
129
130
  rubocop (>= 1.48.1, < 2.0)
130
- rubocop-ast (>= 1.30.0, < 2.0)
131
+ rubocop-ast (>= 1.31.1, < 2.0)
131
132
  rubocop-rake (0.6.0)
132
133
  rubocop (~> 1.0)
133
- rubocop-rspec (2.26.1)
134
+ rubocop-rspec (2.29.2)
134
135
  rubocop (~> 1.40)
135
136
  rubocop-capybara (~> 2.17)
136
137
  rubocop-factory_bot (~> 2.22)
138
+ rubocop-rspec_rails (~> 2.28)
139
+ rubocop-rspec_rails (2.28.3)
140
+ rubocop (~> 1.40)
137
141
  ruby-progressbar (1.13.0)
138
- ruby2_keywords (0.0.5)
139
142
  simplecov (0.22.0)
140
143
  docile (~> 1.1)
141
144
  simplecov-html (~> 0.11)
142
145
  simplecov_json_formatter (~> 0.1)
143
146
  simplecov-html (0.12.3)
144
147
  simplecov_json_formatter (0.1.4)
145
- thor (1.3.0)
146
- thor_nested_subcommand (1.0.7)
148
+ strscan (3.1.0)
149
+ thor (1.3.1)
150
+ thor_nested_subcommand (1.0.8)
147
151
  tzinfo (2.0.6)
148
152
  concurrent-ruby (~> 1.0)
153
+ tzinfo-data (1.2024.1)
154
+ tzinfo (>= 1.0.0)
149
155
  unicode-display_width (2.5.0)
150
- zeitwerk (2.6.13)
156
+ zeitwerk (2.6.14)
151
157
 
152
158
  PLATFORMS
159
+ arm64-darwin-22
160
+ x64-mingw-ucrt
161
+ x64-mingw32
153
162
  x86_64-darwin-19
154
163
  x86_64-darwin-21
155
164
  x86_64-linux
156
165
 
157
166
  DEPENDENCIES
158
- dotenv (~> 2.8, >= 2.8.1)
167
+ bundler (>= 2.5, < 3.0)
168
+ dotenv (>= 2.8, < 3.0)
159
169
  dsu!
160
170
  factory_bot (~> 6.3)
161
171
  ffaker (~> 2.21)
162
- pry-byebug (~> 3.9)
163
- rake (~> 13.0)
164
- reek (~> 6.1, >= 6.1.1)
165
- rspec (~> 3.0)
166
- rubocop (~> 1.50, >= 1.50.2)
167
- rubocop-performance (~> 1.19)
168
- rubocop-rake (~> 0.6.0)
169
- rubocop-rspec (~> 2.23)
170
- simplecov (~> 0.22.0)
172
+ pry-byebug (>= 3.9, < 4.0)
173
+ rake (>= 13.0, < 14.0)
174
+ reek (>= 6.1, < 7.0)
175
+ rspec (>= 3.12, < 4.0)
176
+ rubocop (>= 1.35, < 2.0)
177
+ rubocop-performance (>= 1.14, < 2.0)
178
+ rubocop-rake (>= 0.6, < 1.0)
179
+ rubocop-rspec (>= 2.12, < 3.0)
180
+ simplecov (>= 0.22.0, < 1.0)
171
181
 
172
182
  BUNDLED WITH
173
- 2.3.22
183
+ 2.5.6
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # `dsu`
2
2
 
3
3
  [![Ruby](https://github.com/gangelo/dsu/actions/workflows/ruby.yml/badge.svg)](https://github.com/gangelo/dsu/actions/workflows/ruby.yml)
4
- [![GitHub version](http://badge.fury.io/gh/gangelo%2Fdsu.svg?refresh=12)](https://badge.fury.io/gh/gangelo%2Fdsu)
5
- [![Gem Version](https://badge.fury.io/rb/dsu.svg?refresh=12)](https://badge.fury.io/rb/dsu)
4
+ [![GitHub version](http://badge.fury.io/gh/gangelo%2Fdsu.svg?refresh=14)](https://badge.fury.io/gh/gangelo%2Fdsu)
5
+ [![Gem Version](https://badge.fury.io/rb/dsu.svg?refresh=14)](https://badge.fury.io/rb/dsu)
6
6
  [![Documentation](http://img.shields.io/badge/docs-rdoc.info-blue.svg)](http://www.rubydoc.info/gems/dsu/)
7
7
  [![Report Issues](https://img.shields.io/badge/report-issues-red.svg)](https://github.com/gangelo/dsu/issues)
8
8
  [![License](http://img.shields.io/badge/license-MIT-yellowgreen.svg)](#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.1', '< 4.0']`; however, `dsu` is currently tested against the following ruby versions:
33
- - 3.0.1
34
- - 3.0.6
35
- - 3.1.4
36
- - 3.2.2
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/Rakefile CHANGED
@@ -2,17 +2,15 @@
2
2
 
3
3
  require "bundler/gem_tasks"
4
4
  require "rspec/core/rake_task"
5
-
6
- RSpec::Core::RakeTask.new(:spec)
7
-
8
5
  require "rubocop/rake_task"
9
6
 
7
+ RSpec::Core::RakeTask.new(:spec)
10
8
  RuboCop::RakeTask.new
11
9
 
12
- task default: %i[spec rubocop]
13
-
14
10
  desc 'Generate a migration timestamp'
15
11
  task :timestamp do
16
12
  puts 'The below migration timestamp should be placed in the "lib/dsu/migration/version.rb" file.'
17
13
  puts Time.now.strftime('%Y%m%d%H%M%S')
18
14
  end
15
+
16
+ task default: %i[spec rubocop]
data/lib/dsu/version.rb CHANGED
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Dsu
4
4
  VERSION_REGEX = /\A\d+\.\d+\.\d+(\.(alpha|beta|rc)\.\d+)?\z/
5
- VERSION = '3.0.0'
5
+ VERSION = '3.0.2'
6
6
  end
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.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: 2024-02-17 00:00:00.000000000 Z
11
+ date: 2024-05-21 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
 
@@ -362,7 +382,7 @@ post_install_message: |
362
382
 
363
383
  <3 Gene
364
384
 
365
- dsu now uses "Projects"! Run `dsu help project` to get started.
385
+ dsu now uses "Projects"! Run `dsu help project` to get started. Or, visit the dsu wiki for more information: https://github.com/gangelo/dsu/wiki/Managing-dsu-Projects
366
386
  rdoc_options: []
367
387
  require_paths:
368
388
  - lib
@@ -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.1
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.15
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.