Skip to content

Commit ef1c261

Browse files
committed
Fix post install message
1 parent e938745 commit ef1c261

File tree

7 files changed

+45
-30
lines changed

7 files changed

+45
-30
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
### [1.0.10] 2024-02-19
2+
3+
Changes
4+
5+
- Update bundler.
6+
- Fix post install message to remove references to dsu gem.
7+
18
### [1.0.9] 2024-02-18
29

310
Changes

Gemfile

+20
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,23 @@ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
66

77
# Specify your gem's dependencies in immutable_struct_ex.gemspec
88
gemspec
9+
10+
gem 'bundler', '>= 2.5', '< 3.0'
11+
gem 'rake', '>= 13.0', '< 14.0'
12+
13+
group :development do
14+
gem 'reek', '>= 6.1', '< 7.0'
15+
gem 'rubocop', '>= 1.35', '< 2.0'
16+
gem 'rubocop-performance', '>= 1.14', '< 2.0'
17+
gem 'rubocop-rake', '>= 0.6', '< 1.0'
18+
gem 'rubocop-rspec', '>= 2.12', '< 3.0'
19+
end
20+
21+
group :test do
22+
gem 'rspec', '>= 3.12', '< 4.0'
23+
gem 'simplecov', '>= 0.22.0', '< 1.0'
24+
end
25+
26+
group :development, :test do
27+
gem 'pry-byebug', '>= 3.9', '< 4.0'
28+
end

Gemfile.lock

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
immutable_struct_ex (1.0.9)
4+
immutable_struct_ex (1.0.10)
55

66
GEM
77
remote: https://rubygems.org/
@@ -118,17 +118,17 @@ PLATFORMS
118118
x86_64-linux
119119

120120
DEPENDENCIES
121-
bundler (~> 2.4, >= 2.4.21)
121+
bundler (>= 2.5, < 3.0)
122122
immutable_struct_ex!
123-
pry-byebug (~> 3.9)
124-
rake (~> 13.0, >= 13.0.6)
125-
reek (~> 6.1, >= 6.1.1)
126-
rspec (>= 3.10)
127-
rubocop (~> 1.35)
128-
rubocop-performance (~> 1.14, >= 1.14.3)
129-
rubocop-rake (~> 0.6.0)
130-
rubocop-rspec (~> 2.12, >= 2.12.1)
131-
simplecov (~> 0.22.0)
123+
pry-byebug (>= 3.9, < 4.0)
124+
rake (>= 13.0, < 14.0)
125+
reek (>= 6.1, < 7.0)
126+
rspec (>= 3.12, < 4.0)
127+
rubocop (>= 1.35, < 2.0)
128+
rubocop-performance (>= 1.14, < 2.0)
129+
rubocop-rake (>= 0.6, < 1.0)
130+
rubocop-rspec (>= 2.12, < 3.0)
131+
simplecov (>= 0.22.0, < 1.0)
132132

133133
BUNDLED WITH
134-
2.4.21
134+
2.5.6

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![Ruby](https://github.com/gangelo/immutable_struct_ex/actions/workflows/ruby.yml/badge.svg)](https://github.com/gangelo/immutable_struct_ex/actions/workflows/ruby.yml)
2-
[![GitHub version](http://badge.fury.io/gh/gangelo%2Fimmutable_struct_ex.svg?refresh=7)](https://badge.fury.io/gh/gangelo%2Fimmutable_struct_ex)
3-
[![Gem Version](https://badge.fury.io/rb/immutable_struct_ex.svg?refresh=7)](https://badge.fury.io/rb/immutable_struct_ex)
2+
[![GitHub version](http://badge.fury.io/gh/gangelo%2Fimmutable_struct_ex.svg?refresh=8)](https://badge.fury.io/gh/gangelo%2Fimmutable_struct_ex)
3+
[![Gem Version](https://badge.fury.io/rb/immutable_struct_ex.svg?refresh=8)](https://badge.fury.io/rb/immutable_struct_ex)
44
[![](http://ruby-gem-downloads-badge.herokuapp.com/immutable_struct_ex?type=total)](http://www.rubydoc.info/gems/immutable_struct_ex/)
55
[![Documentation](http://img.shields.io/badge/docs-rdoc.info-blue.svg)](http://www.rubydoc.info/gems/immutable_struct_ex/)
66
[![Report Issues](https://img.shields.io/badge/report-issues-red.svg)](https://github.com/gangelo/immutable_struct_ex/issues)

Rakefile

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@
22

33
require "bundler/gem_tasks"
44
require "rspec/core/rake_task"
5-
6-
RSpec::Core::RakeTask.new(:spec)
7-
85
require "rubocop/rake_task"
96

7+
RSpec::Core::RakeTask.new(:spec)
108
RuboCop::RakeTask.new
119

1210
task default: %i[spec rubocop]

immutable_struct_ex.gemspec

+2-12
Original file line numberDiff line numberDiff line change
@@ -32,21 +32,11 @@ Gem::Specification.new do |spec|
3232
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
3333
spec.require_paths = ['lib']
3434

35-
spec.add_development_dependency 'bundler', '~> 2.4', '>= 2.4.21'
36-
spec.add_development_dependency 'pry-byebug', '~> 3.9'
37-
spec.add_development_dependency 'reek', '~> 6.1', '>= 6.1.1'
38-
spec.add_development_dependency 'rspec', '>= 3.10'
39-
spec.add_development_dependency 'rubocop', '~> 1.35'
40-
spec.add_development_dependency 'rubocop-performance', '~> 1.14', '>= 1.14.3'
41-
spec.add_development_dependency 'rubocop-rake', '~> 0.6.0'
42-
spec.add_development_dependency 'rubocop-rspec', '~> 2.12', '>= 2.12.1'
43-
spec.add_development_dependency 'simplecov', '~> 0.22.0'
44-
spec.add_development_dependency 'rake', '~> 13.0', '>= 13.0.6'
4535
spec.post_install_message = <<~POST_INSTALL
4636
Thank you for installing immutable_struct_ex.
4737
48-
View the dsu README.md here: https://github.com/gangelo/immutable_struct_ex
49-
View the dsu CHANGELOG.md: https://github.com/gangelo/immutable_struct_ex/blob/main/CHANGELOG.md
38+
View the immutable_struct_ex README.md here: https://github.com/gangelo/immutable_struct_ex
39+
View the immutable_struct_ex CHANGELOG.md: https://github.com/gangelo/immutable_struct_ex/blob/main/CHANGELOG.md
5040
5141
*
5242
***

lib/immutable_struct_ex/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module ImmutableStructEx
4-
VERSION = '1.0.9'
4+
VERSION = '1.0.10'
55
end

0 commit comments

Comments
 (0)