dsu 3.0.0.beta.3 → 3.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8b5ea3976c946b474fa3e7d1cf75e30df6c55edfbb0048168968de1f4da6e078
4
- data.tar.gz: 697dcd00e542b94c80c6383f26bc5b36f75ee4519dd494219021e2492e36acd4
3
+ metadata.gz: 273c30c25a45fb40ba38e2c9627d4a95ec466bc62674dd5622f44da30da31d2a
4
+ data.tar.gz: 640e9a1fdcb0aa36698292b8fa4ac23e178de80479e516ff97b11ea61c166faa
5
5
  SHA512:
6
- metadata.gz: 4ad3f9a86bab508d3719a656e59fd43460f04261c98b8313d5092544d9d6f6f12e823c2dc19b620c15470b58a1674401278b8a85e1b7f253db92959dcab30f4a
7
- data.tar.gz: d464ebc206ca339e59525365dfc6d5161ad35937a4bc066a66e5585226d09bb9736e78c63fd8a6655ac2320e3b78aefe2ab53f1253f55f6a8ff7d4dcb6e5c202
6
+ metadata.gz: 0d84cf150f1b872dd36b1f1e3f6a51249d3646c32891db89140b14497f395060f02bba1e71d346d305338ec6d295a3f3eccce5d1ebdea27d2468f33e7511483e
7
+ data.tar.gz: deb5fee47343fef53a03996217d76582d0995b1c494af085f108b626c827d16fd5653bd179f241ab4f4d87393598058767350e5ec963945f696f9f31ec7e26a0
data/CHANGELOG.md CHANGED
@@ -2,7 +2,14 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
- ## [3.0.0] - 2024-??-??
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
+
12
+ ## [3.0.0] - 2024-02-17
6
13
 
7
14
  ### Enhancements
8
15
  [x] Added `dsu project` command to manage DSU projects. See `dsu help project` or the [dsu wiki](https://github.com/gangelo/dsu/wiki) for more information.
@@ -10,6 +17,7 @@ All notable changes to this project will be documented in this file.
10
17
 
11
18
  ### Changes
12
19
  [x] Update ruby gems.
20
+ [x] Major updates to the migration process.
13
21
  [x] `dsu import` now has the --override true|false (default: false) OPTION. If true, the import process will ignore the project name found in the import file and import the entries into the current project. If false, the import process will use the project name found in the import file.
14
22
  [x] Change `dsu export` file name for exports. When exporting all DSU entry groups for a project, the file name will be:
15
23
 
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,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- dsu (3.0.0.beta.1)
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.7)
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
- dotenv (~> 2.8, >= 2.8.1)
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 (~> 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)
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.3.22
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=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=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
@@ -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.beta.3'
5
+ VERSION = '3.0.1'
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.beta.3
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-17 00:00:00.000000000 Z
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
@@ -376,9 +376,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
376
376
  version: '4.0'
377
377
  required_rubygems_version: !ruby/object:Gem::Requirement
378
378
  requirements:
379
- - - ">"
379
+ - - ">="
380
380
  - !ruby/object:Gem::Version
381
- version: 1.3.1
381
+ version: '0'
382
382
  requirements: []
383
383
  rubygems_version: 3.2.15
384
384
  signing_key: