Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump dotenv from 2.8.1 to 3.0.2 #78

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file.

## [3.0.1] - 2024-02-19

### Changes
[x] Update ruby gems.
[x] Update Gemfile to include gem groups for development and testing.
[x] Update .gemspec file post_install_message to include wiki link for new dsu project command.

## [3.0.0] - 2024-02-17

### Enhancements
Expand Down
34 changes: 22 additions & 12 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,25 @@ source 'https://rubygems.org'
# Specify your gem's dependencies in dsu.gemspec
gemspec

gem 'dotenv', '~> 2.8', '>= 2.8.1'
gem 'factory_bot', '~> 6.3'
gem 'ffaker', '~> 2.21'
gem 'pry-byebug', '~> 3.9'
gem 'rake', '~> 13.0'
gem 'reek', '~> 6.1', '>= 6.1.1'
gem 'rspec', '~> 3.0'
gem 'rubocop', '~> 1.50', '>= 1.50.2'
gem 'rubocop-performance', '~> 1.19'
gem 'rubocop-rake', '~> 0.6.0'
gem 'rubocop-rspec', '~> 2.23'
gem 'simplecov', '~> 0.22.0'
gem 'bundler', '>= 2.5', '< 3.0'
gem 'rake', '>= 13.0', '< 14.0'

group :development do
gem 'reek', '>= 6.1', '< 7.0'
gem 'rubocop', '>= 1.35', '< 2.0'
gem 'rubocop-performance', '>= 1.14', '< 2.0'
gem 'rubocop-rake', '>= 0.6', '< 1.0'
gem 'rubocop-rspec', '>= 2.12', '< 3.0'
end

group :test do
gem 'rspec', '>= 3.12', '< 4.0'
gem 'simplecov', '>= 0.22.0', '< 1.0'
end

group :development, :test do
gem 'dotenv', '>= 2.8', '< 4.0'
gem 'factory_bot', '~> 6.3'
gem 'ffaker', '~> 2.21'
gem 'pry-byebug', '>= 3.9', '< 4.0'
end
29 changes: 15 additions & 14 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
dsu (3.0.0)
dsu (3.0.1)
activemodel (>= 7.0.8, < 8.0)
activesupport (>= 7.0.8, < 8.0)
colorize (>= 1.1, < 2.0)
Expand Down Expand Up @@ -34,7 +34,7 @@ GEM
connection_pool (2.4.1)
diff-lcs (1.5.1)
docile (1.4.0)
dotenv (2.8.1)
dotenv (3.0.2)
drb (2.2.0)
ruby2_keywords
dry-configurable (1.1.0)
Expand Down Expand Up @@ -143,7 +143,7 @@ GEM
simplecov-html (0.12.3)
simplecov_json_formatter (0.1.4)
thor (1.3.0)
thor_nested_subcommand (1.0.7)
thor_nested_subcommand (1.0.8)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unicode-display_width (2.5.0)
Expand All @@ -155,19 +155,20 @@ PLATFORMS
x86_64-linux

DEPENDENCIES
dotenv (~> 2.8, >= 2.8.1)
bundler (>= 2.5, < 3.0)
dotenv (>= 2.8, < 4.0)
dsu!
factory_bot (~> 6.3)
ffaker (~> 2.21)
pry-byebug (~> 3.9)
rake (~> 13.0)
reek (~> 6.1, >= 6.1.1)
rspec (~> 3.0)
rubocop (~> 1.50, >= 1.50.2)
rubocop-performance (~> 1.19)
rubocop-rake (~> 0.6.0)
rubocop-rspec (~> 2.23)
simplecov (~> 0.22.0)
pry-byebug (>= 3.9, < 4.0)
rake (>= 13.0, < 14.0)
reek (>= 6.1, < 7.0)
rspec (>= 3.12, < 4.0)
rubocop (>= 1.35, < 2.0)
rubocop-performance (>= 1.14, < 2.0)
rubocop-rake (>= 0.6, < 1.0)
rubocop-rspec (>= 2.12, < 3.0)
simplecov (>= 0.22.0, < 1.0)

BUNDLED WITH
2.3.22
2.5.6
8 changes: 3 additions & 5 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,15 @@

require "bundler/gem_tasks"
require "rspec/core/rake_task"

RSpec::Core::RakeTask.new(:spec)

require "rubocop/rake_task"

RSpec::Core::RakeTask.new(:spec)
RuboCop::RakeTask.new

task default: %i[spec rubocop]

desc 'Generate a migration timestamp'
task :timestamp do
puts 'The below migration timestamp should be placed in the "lib/dsu/migration/version.rb" file.'
puts Time.now.strftime('%Y%m%d%H%M%S')
end

task default: %i[spec rubocop]
2 changes: 1 addition & 1 deletion dsu.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,6 @@ Gem::Specification.new do |spec|

<3 Gene

dsu now uses "Projects"! Run `dsu help project` to get started.
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
POST_INSTALL
end
2 changes: 1 addition & 1 deletion lib/dsu/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

module Dsu
VERSION_REGEX = /\A\d+\.\d+\.\d+(\.(alpha|beta|rc)\.\d+)?\z/
VERSION = '3.0.0'
VERSION = '3.0.1'
end
Loading