dsu 3.0.0 → 3.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/Gemfile +22 -12
- data/Gemfile.lock +14 -13
- data/README.md +2 -2
- data/Rakefile +3 -5
- data/lib/dsu/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 273c30c25a45fb40ba38e2c9627d4a95ec466bc62674dd5622f44da30da31d2a
|
4
|
+
data.tar.gz: 640e9a1fdcb0aa36698292b8fa4ac23e178de80479e516ff97b11ea61c166faa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0d84cf150f1b872dd36b1f1e3f6a51249d3646c32891db89140b14497f395060f02bba1e71d346d305338ec6d295a3f3eccce5d1ebdea27d2468f33e7511483e
|
7
|
+
data.tar.gz: deb5fee47343fef53a03996217d76582d0995b1c494af085f108b626c827d16fd5653bd179f241ab4f4d87393598058767350e5ec963945f696f9f31ec7e26a0
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,13 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
+
## [3.0.1] - 2024-02-19
|
6
|
+
|
7
|
+
### Changes
|
8
|
+
[x] Update ruby gems.
|
9
|
+
[x] Update Gemfile to include gem groups for development and testing.
|
10
|
+
[x] Update .gemspec file post_install_message to include wiki link for new dsu project command.
|
11
|
+
|
5
12
|
## [3.0.0] - 2024-02-17
|
6
13
|
|
7
14
|
### 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 '
|
9
|
-
gem '
|
10
|
-
|
11
|
-
|
12
|
-
gem '
|
13
|
-
gem '
|
14
|
-
gem '
|
15
|
-
gem 'rubocop', '
|
16
|
-
gem 'rubocop-
|
17
|
-
|
18
|
-
|
19
|
-
|
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,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
dsu (3.0.
|
4
|
+
dsu (3.0.1)
|
5
5
|
activemodel (>= 7.0.8, < 8.0)
|
6
6
|
activesupport (>= 7.0.8, < 8.0)
|
7
7
|
colorize (>= 1.1, < 2.0)
|
@@ -143,7 +143,7 @@ GEM
|
|
143
143
|
simplecov-html (0.12.3)
|
144
144
|
simplecov_json_formatter (0.1.4)
|
145
145
|
thor (1.3.0)
|
146
|
-
thor_nested_subcommand (1.0.
|
146
|
+
thor_nested_subcommand (1.0.8)
|
147
147
|
tzinfo (2.0.6)
|
148
148
|
concurrent-ruby (~> 1.0)
|
149
149
|
unicode-display_width (2.5.0)
|
@@ -155,19 +155,20 @@ PLATFORMS
|
|
155
155
|
x86_64-linux
|
156
156
|
|
157
157
|
DEPENDENCIES
|
158
|
-
|
158
|
+
bundler (>= 2.5, < 3.0)
|
159
|
+
dotenv (>= 2.8, < 3.0)
|
159
160
|
dsu!
|
160
161
|
factory_bot (~> 6.3)
|
161
162
|
ffaker (~> 2.21)
|
162
|
-
pry-byebug (
|
163
|
-
rake (
|
164
|
-
reek (
|
165
|
-
rspec (
|
166
|
-
rubocop (
|
167
|
-
rubocop-performance (
|
168
|
-
rubocop-rake (
|
169
|
-
rubocop-rspec (
|
170
|
-
simplecov (
|
163
|
+
pry-byebug (>= 3.9, < 4.0)
|
164
|
+
rake (>= 13.0, < 14.0)
|
165
|
+
reek (>= 6.1, < 7.0)
|
166
|
+
rspec (>= 3.12, < 4.0)
|
167
|
+
rubocop (>= 1.35, < 2.0)
|
168
|
+
rubocop-performance (>= 1.14, < 2.0)
|
169
|
+
rubocop-rake (>= 0.6, < 1.0)
|
170
|
+
rubocop-rspec (>= 2.12, < 3.0)
|
171
|
+
simplecov (>= 0.22.0, < 1.0)
|
171
172
|
|
172
173
|
BUNDLED WITH
|
173
|
-
2.
|
174
|
+
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=
|
5
|
-
[![Gem Version](https://badge.fury.io/rb/dsu.svg?refresh=
|
4
|
+
[![GitHub version](http://badge.fury.io/gh/gangelo%2Fdsu.svg?refresh=13)](https://badge.fury.io/gh/gangelo%2Fdsu)
|
5
|
+
[![Gem Version](https://badge.fury.io/rb/dsu.svg?refresh=13)](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)
|
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
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.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: 2024-02-
|
11
|
+
date: 2024-02-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -362,7 +362,7 @@ post_install_message: |
|
|
362
362
|
|
363
363
|
<3 Gene
|
364
364
|
|
365
|
-
dsu now uses "Projects"! Run `dsu help project` to get started.
|
365
|
+
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
366
|
rdoc_options: []
|
367
367
|
require_paths:
|
368
368
|
- lib
|