byebug 8.2.3 → 8.2.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/byebug/interfaces/local_interface.rb +3 -5
- data/lib/byebug/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e2f8c00c7c49e0088256d1e0409a53a315c340ac
|
4
|
+
data.tar.gz: 21b354804463e294bd663e1e16f5209fb16d07c0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 034ed4b72284b132a35d95ed9fe5605963afb2a9c98eaab35806fea373e138264d19d2a42321991ef07962b7ffe3245d494b70912329b48718528f82cc3da695
|
7
|
+
data.tar.gz: 9c9b2b9d8979b106f512ee072415a3877ad89a9d9b15c9b8aa57299c56d79531d74d1f40ad170112f08161372a769132b9bbff3d9aaec64aaaeb076fad5ef804
|
data/CHANGELOG.md
CHANGED
@@ -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 =
|
14
|
-
|
15
|
-
|
11
|
+
@input = STDIN
|
12
|
+
@output = STDOUT
|
13
|
+
@error = STDERR
|
16
14
|
end
|
17
15
|
|
18
16
|
#
|
data/lib/byebug/version.rb
CHANGED
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.
|
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-
|
13
|
+
date: 2016-04-08 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: bundler
|