irbtools 4.0.8 → 4.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f02f8b065c2b36a4d9caf761f36d2776d8c19dbae0c3d3754db802c7ac4a6c60
4
- data.tar.gz: 36df7068fc8cfc9a767f6d07b252d094acf675c808047dbaa382772371004357
3
+ metadata.gz: '046873c731b2480113e4bcae8a4ae7c3407bdc6ba9dea2affa60d6c04aaf17fc'
4
+ data.tar.gz: 31c135009995d4dc545bf314a2bc2309bf39c4ce7f943411a7c7b2bdce3bb02c
5
5
  SHA512:
6
- metadata.gz: 6bc115e8be4396db8a372ff3725c1ba2857e029b4ea2088e55b2d8d215731eeaebf27820ec998382d75c20bcb27c2342c8bc5a410bfadb48971bdeabd225cb11
7
- data.tar.gz: fa6fb6d62b9542ec75f1e9af7be27692b596da6be3f704c2e03b0492c3422403f899bc4354ad60d44ce6dbbd5f73b5e1758f34570b0a2b8fa9656bbd6c8fb649
6
+ metadata.gz: a0a2771b998423910a74fb5f246b13701417c14646d2c5643d308d25b71cf1a18e3db8381a92dea059eb62fd38f9128fc3c119ea363691da227ec79d33a247af
7
+ data.tar.gz: ed1f123a4542c8db939a7bde51fa972b836011dcde94f21b6d3410f30925d9d767bbfc0f6f11043be2bc59191afcc69d98885a913594b74b486ee4ae110e368d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Irbtools Changelog
2
2
 
3
+ ## 4.0.9
4
+
5
+ * Fix loading command `Base` class and require IRB 1.12 to make sure it is available
6
+
3
7
  ## 4.0.8
4
8
 
5
9
  * Require IRB 1.11
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- irbtools (4.0.8)
4
+ irbtools (4.0.9)
5
5
  clipboard (>= 1.4, < 3.0)
6
6
  code (>= 0.9.4, < 2.0)
7
7
  coderay (~> 1.1)
@@ -11,7 +11,7 @@ PATH
11
11
  fancy_irb (~> 2.1)
12
12
  hirb (~> 0.7, >= 0.7.3)
13
13
  interactive_editor (~> 0.0, >= 0.0.12)
14
- irb (>= 1.11, < 1.13)
14
+ irb (~> 1.12.0)
15
15
  looksee (~> 5.0)
16
16
  methodfinder (~> 2.2, >= 2.2.5)
17
17
  object_shadow (~> 1.1)
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  ## Irbtools 4 for Current IRB
4
4
 
5
- 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.
5
+ 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.
6
6
 
7
7
  ## Description
8
8
 
data/irbtools.gemspec CHANGED
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
20
20
  # Dependencies
21
21
 
22
22
  # Core Functionality
23
- s.add_dependency %q<irb>, ">= 1.11", "< 1.13"
23
+ s.add_dependency %q<irb>, "~> 1.12.0"
24
24
  s.add_dependency %q<every_day_irb>, "~> 2.2"
25
25
  s.add_dependency %q<fancy_irb>, "~> 2.1"
26
26
  s.add_dependency %q<wirb>, "~> 2.0", ">= 2.2.1"
@@ -1,4 +1,4 @@
1
- require "irb"
1
+ require "irb/command/base"
2
2
 
3
3
  module IRB
4
4
  module Command
@@ -1,4 +1,4 @@
1
- require "irb"
1
+ require "irb/command/base"
2
2
 
3
3
  module IRB
4
4
  module Command
@@ -1,4 +1,4 @@
1
- require "irb"
1
+ require "irb/command/base"
2
2
 
3
3
  module IRB
4
4
  module Command
@@ -1,4 +1,4 @@
1
- require "irb"
1
+ require "irb/command/base"
2
2
 
3
3
  module IRB
4
4
  module Command
@@ -1,4 +1,4 @@
1
- require "irb"
1
+ require "irb/command/base"
2
2
 
3
3
  module IRB
4
4
  module Command
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Irbtools
4
- VERSION = "4.0.8"
4
+ VERSION = "4.0.9"
5
5
  end
metadata CHANGED
@@ -1,35 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: irbtools
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.8
4
+ version: 4.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Lelis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-04-24 00:00:00.000000000 Z
11
+ date: 2024-04-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: irb
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ">="
18
- - !ruby/object:Gem::Version
19
- version: '1.11'
20
- - - "<"
17
+ - - "~>"
21
18
  - !ruby/object:Gem::Version
22
- version: '1.13'
19
+ version: 1.12.0
23
20
  type: :runtime
24
21
  prerelease: false
25
22
  version_requirements: !ruby/object:Gem::Requirement
26
23
  requirements:
27
- - - ">="
28
- - !ruby/object:Gem::Version
29
- version: '1.11'
30
- - - "<"
24
+ - - "~>"
31
25
  - !ruby/object:Gem::Version
32
- version: '1.13'
26
+ version: 1.12.0
33
27
  - !ruby/object:Gem::Dependency
34
28
  name: every_day_irb
35
29
  requirement: !ruby/object:Gem::Requirement