Skip to content

Commit

Permalink
Fix loading command Base class and require IRB 1.12 to make sure it…
Browse files Browse the repository at this point in the history
… is available
  • Loading branch information
janlelis committed Apr 30, 2024
1 parent d03439f commit 73e62ae
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Irbtools Changelog

## 4.0.9 (unreleased)

* Fix loading command `Base` class and require IRB 1.12 to make sure it is available

## 4.0.8

* Require IRB 1.11
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Irbtools 4 for Current IRB

The current version of Irbtools requires [IRB 1.11+](https://github.com/ruby/irb) ([which Ruby version bundles which IRB?](https://stdgems.org/irb/)). Please use Irbtools 3 for earlier versions of IRB.
The current version of Irbtools requires [IRB 1.12+](https://github.com/ruby/irb) ([which Ruby version bundles which IRB?](https://stdgems.org/irb/)). Please use Irbtools 3 for earlier versions of IRB.

## Description

Expand Down
2 changes: 1 addition & 1 deletion irbtools.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Gem::Specification.new do |s|
# Dependencies

# Core Functionality
s.add_dependency %q<irb>, ">= 1.11", "< 1.13"
s.add_dependency %q<irb>, "~> 1.12.0"
s.add_dependency %q<every_day_irb>, "~> 2.2"
s.add_dependency %q<fancy_irb>, "~> 2.1"
s.add_dependency %q<wirb>, "~> 2.0", ">= 2.2.1"
Expand Down
2 changes: 1 addition & 1 deletion lib/irbtools/commands/code.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require "irb"
require "irb/command/base"

module IRB
module Command
Expand Down
2 changes: 1 addition & 1 deletion lib/irbtools/commands/howtocall.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require "irb"
require "irb/command/base"

module IRB
module Command
Expand Down
2 changes: 1 addition & 1 deletion lib/irbtools/commands/look.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require "irb"
require "irb/command/base"

module IRB
module Command
Expand Down
2 changes: 1 addition & 1 deletion lib/irbtools/commands/shadow.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require "irb"
require "irb/command/base"

module IRB
module Command
Expand Down
2 changes: 1 addition & 1 deletion lib/irbtools/commands/sys.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require "irb"
require "irb/command/base"

module IRB
module Command
Expand Down

0 comments on commit 73e62ae

Please sign in to comment.