byebug 4.0.1 → 4.0.2
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 +4 -4
- data/CHANGELOG.md +8 -2
- data/lib/byebug/history.rb +11 -1
- data/lib/byebug/version.rb +1 -1
- metadata +2 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e1daddbfc6456338d94c6ca61db65a901fa79c0a
|
|
4
|
+
data.tar.gz: 4ad81bb42875aa5591d850191adf8f7d45eeca69
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 371730b3f5d7a40b38bc6ffdf59e3bfd0e5431813d2a5fbc281644acc7a953550c5dca16b96186afe5c90c63124e3931f4f55bee9c47f0c846dbca9e16e8cc82
|
|
7
|
+
data.tar.gz: fada8ba4a4d09d99117936776d9540929408126c4e8c3814c4671853a0cdaa6241bbe7047a87804b7c6d54007545f8f84dab621e533ff3d1397801d5e74f7354
|
data/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
|
-
## 4.0.
|
|
1
|
+
## 4.0.2 - 2014-03-16
|
|
2
|
+
### Fixed
|
|
3
|
+
* Removed `rb-readline` as a dependency and show a help message whenever
|
|
4
|
+
requiring readline fails instead (#118)
|
|
5
|
+
|
|
6
|
+
## 4.0.1 - 2014-03-13
|
|
2
7
|
### Fixed
|
|
3
8
|
* .yml files needed for printers support were missing from the release... :S
|
|
9
|
+
* Add `rb-readline` as a dependency (#118)
|
|
4
10
|
|
|
5
|
-
## 4.0.0
|
|
11
|
+
## 4.0.0 - 2014-03-13
|
|
6
12
|
### Added
|
|
7
13
|
- `untracevar` command that stops tracing a global variable.
|
|
8
14
|
- Window CI build through AppVeyor.
|
data/lib/byebug/history.rb
CHANGED
|
@@ -1,4 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
begin
|
|
2
|
+
require 'readline'
|
|
3
|
+
rescue LoadError
|
|
4
|
+
warn <<-EOW
|
|
5
|
+
Sorry, you can't use byebug without Readline. To solve this, you need to
|
|
6
|
+
rebuild Ruby with Readline support. If using Ubuntu, try `sudo apt-get
|
|
7
|
+
install libreadline-dev` and then reinstall your Ruby.
|
|
8
|
+
EOW
|
|
9
|
+
|
|
10
|
+
raise
|
|
11
|
+
end
|
|
2
12
|
|
|
3
13
|
module Byebug
|
|
4
14
|
#
|
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: 4.0.
|
|
4
|
+
version: 4.0.2
|
|
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: 2015-03-
|
|
13
|
+
date: 2015-03-16 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: columnize
|
|
@@ -26,20 +26,6 @@ dependencies:
|
|
|
26
26
|
- - '='
|
|
27
27
|
- !ruby/object:Gem::Version
|
|
28
28
|
version: 0.9.0
|
|
29
|
-
- !ruby/object:Gem::Dependency
|
|
30
|
-
name: rb-readline
|
|
31
|
-
requirement: !ruby/object:Gem::Requirement
|
|
32
|
-
requirements:
|
|
33
|
-
- - '='
|
|
34
|
-
- !ruby/object:Gem::Version
|
|
35
|
-
version: 0.5.2
|
|
36
|
-
type: :runtime
|
|
37
|
-
prerelease: false
|
|
38
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
39
|
-
requirements:
|
|
40
|
-
- - '='
|
|
41
|
-
- !ruby/object:Gem::Version
|
|
42
|
-
version: 0.5.2
|
|
43
29
|
- !ruby/object:Gem::Dependency
|
|
44
30
|
name: bundler
|
|
45
31
|
requirement: !ruby/object:Gem::Requirement
|