irbtools 4.0.8 → 4.0.10

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: cffab1008edb3639d5fce2734ecf14926a54697288f42c97a19ce3c208e477ca
4
+ data.tar.gz: 694e9fb71d0ad7df4a38f8d98a1c1736eb5a599cdf25245f2865235d1cf72cc7
5
5
  SHA512:
6
- metadata.gz: 6bc115e8be4396db8a372ff3725c1ba2857e029b4ea2088e55b2d8d215731eeaebf27820ec998382d75c20bcb27c2342c8bc5a410bfadb48971bdeabd225cb11
7
- data.tar.gz: fa6fb6d62b9542ec75f1e9af7be27692b596da6be3f704c2e03b0492c3422403f899bc4354ad60d44ce6dbbd5f73b5e1758f34570b0a2b8fa9656bbd6c8fb649
6
+ metadata.gz: c10f2cea5ae0feb67c59e30c397eb8cdd2d237057cc436d69a6ea0b05f4e8422108bc12e78383a305d978eb8e5d829b2510c590e2bb6c963d520127c88e2839b
7
+ data.tar.gz: 1eb595f7e72512720fab2027c24f27b804c66146e20b73fe0865b8319088b7382e60d3fbd244bfbd400a82fa1a3fcdb27d4f23cc9ee8082ac3332fa701a0d6d3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Irbtools Changelog
2
2
 
3
+ ## 4.0.10
4
+
5
+ * Loosen IRB dependency to allow IRB 1.13, fixes #57
6
+
7
+ ## 4.0.9
8
+
9
+ * Fix loading command `Base` class and require IRB 1.12 to make sure it is available
10
+
3
11
  ## 4.0.8
4
12
 
5
13
  * 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.10)
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, < 1.14)
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", "< 1.14"
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.10"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
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.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Lelis
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-04-24 00:00:00.000000000 Z
11
+ date: 2024-07-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: irb
@@ -16,20 +16,20 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '1.11'
19
+ version: 1.12.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: '1.13'
22
+ version: '1.14'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '1.11'
29
+ version: 1.12.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: '1.13'
32
+ version: '1.14'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: every_day_irb
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -357,7 +357,7 @@ licenses:
357
357
  - MIT
358
358
  metadata:
359
359
  rubygems_mfa_required: 'true'
360
- post_install_message:
360
+ post_install_message:
361
361
  rdoc_options: []
362
362
  require_paths:
363
363
  - lib
@@ -376,7 +376,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
376
376
  version: '0'
377
377
  requirements: []
378
378
  rubygems_version: 3.5.9
379
- signing_key:
379
+ signing_key:
380
380
  specification_version: 4
381
381
  summary: Irbtools happy IRB.
382
382
  test_files: []