byebug 8.2.3 → 8.2.4

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
  SHA1:
3
- metadata.gz: 3de52e0debad720f122829e148b9b492a2acba4d
4
- data.tar.gz: ded3f66ec7d142c98f96448e140bf4084cd26c74
3
+ metadata.gz: e2f8c00c7c49e0088256d1e0409a53a315c340ac
4
+ data.tar.gz: 21b354804463e294bd663e1e16f5209fb16d07c0
5
5
  SHA512:
6
- metadata.gz: c8b995f94420f0a6ea19f7adcabd403ab987e2fe0bb5b416eeae799c795faf59d4d93fea0b9e04016690d103e17f27ab4e6f4fc1e2c8b07d6b94448c00f213ef
7
- data.tar.gz: 7c3f70142d4f637bc2d40a4564d5b894d0bcee68f96eb655f1c63cce015f5dd10af6fed4bb1fcb10fdbe235f1648292720c6843ee4aaf256efa427c7e007b5cf
6
+ metadata.gz: 034ed4b72284b132a35d95ed9fe5605963afb2a9c98eaab35806fea373e138264d19d2a42321991ef07962b7ffe3245d494b70912329b48718528f82cc3da695
7
+ data.tar.gz: 9c9b2b9d8979b106f512ee072415a3877ad89a9d9b15c9b8aa57299c56d79531d74d1f40ad170112f08161372a769132b9bbff3d9aaec64aaaeb076fad5ef804
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## Master (Unreleased)
4
4
 
5
+ ## 8.2.4 - 2016-04-08
6
+
7
+ ### Fixed
8
+
9
+ * Reverts #211 which leads to an unusable debugger.
10
+
5
11
  ## 8.2.3 - 2016-04-07
6
12
 
7
13
  ### Fixed
@@ -1,6 +1,4 @@
1
1
  # frozen_string_literal: true
2
- require 'io/console'
3
-
4
2
  module Byebug
5
3
  #
6
4
  # Interface class for standard byebug use.
@@ -10,9 +8,9 @@ module Byebug
10
8
 
11
9
  def initialize
12
10
  super()
13
- @input = @output = @error = IO.console
14
- Readline.input = @input
15
- Readline.output = @output
11
+ @input = STDIN
12
+ @output = STDOUT
13
+ @error = STDERR
16
14
  end
17
15
 
18
16
  #
@@ -3,5 +3,5 @@
3
3
  # Reopen main module to define the library version
4
4
  #
5
5
  module Byebug
6
- VERSION = '8.2.3'.freeze
6
+ VERSION = '8.2.4'.freeze
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: byebug
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.2.3
4
+ version: 8.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Rodriguez
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2016-04-07 00:00:00.000000000 Z
13
+ date: 2016-04-08 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: bundler