rib 1.6.2 → 1.6.3
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/CHANGES.md +9 -1
- data/lib/rib/core/strip_backtrace.rb +1 -1
- data/lib/rib/version.rb +1 -1
- data/rib.gemspec +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 81b816efeeca6a4312c7e4261fc6e59d823ae274aaa3a63fc334943e019aa448
|
|
4
|
+
data.tar.gz: 3a3710f06cd4decb48706a17ca8826fb48ad949fdbed572c2ee7a4027a8503cf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 700bcbee527045fec65a6fb246e3843646c3b297934d7b03f3b924b39ef6c7261e73fd567a851a880b1c59c004e0b7fd110203a49f6f1429e2106060fc200137
|
|
7
|
+
data.tar.gz: 4bbda0e86bec496934a9c69b9dae1a5722132e4fb84fd9d15ef39726ae9ff4223d42b98cfde56b015ae6264acb20ce7e7c64212d7aae689439dc1a6aff89ccc1
|
data/CHANGES.md
CHANGED
|
@@ -1,10 +1,18 @@
|
|
|
1
1
|
# CHANGES
|
|
2
2
|
|
|
3
|
+
## Rib 1.6.2 -- 2026-01-20
|
|
4
|
+
|
|
5
|
+
### Bugs fixed
|
|
6
|
+
|
|
7
|
+
* [core/strip_backtrace] Now it works with backtrace quotes change from
|
|
8
|
+
`` ` `` to `'`
|
|
9
|
+
|
|
3
10
|
## Rib 1.6.2 -- 2026-01-19
|
|
4
11
|
|
|
5
12
|
### Bugs fixed
|
|
6
13
|
|
|
7
|
-
*
|
|
14
|
+
* [core/multiline] Now it works with prism parser
|
|
15
|
+
* [more/color] Now it works with backtrace quotes change from `` ` `` to `'`
|
|
8
16
|
|
|
9
17
|
## Rib 1.6.1 -- 2022-12-30
|
|
10
18
|
|
|
@@ -37,7 +37,7 @@ module Rib; module StripBacktrace
|
|
|
37
37
|
|
|
38
38
|
def strip_rib_backtrace backtrace
|
|
39
39
|
backtrace[
|
|
40
|
-
0..backtrace.rindex{ |l| l =~ /\(#{name}\):\d+:in
|
|
40
|
+
0..backtrace.rindex{ |l| l =~ /\(#{name}\):\d+:in (?:`|').+?'/ } || -1]
|
|
41
41
|
end
|
|
42
42
|
|
|
43
43
|
def replace_path_prefix prefix, substitute, path
|
data/lib/rib/version.rb
CHANGED
data/rib.gemspec
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
|
-
# stub: rib 1.6.
|
|
2
|
+
# stub: rib 1.6.3 ruby lib
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |s|
|
|
5
5
|
s.name = "rib".freeze
|
|
6
|
-
s.version = "1.6.
|
|
6
|
+
s.version = "1.6.3".freeze
|
|
7
7
|
|
|
8
8
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
|
9
9
|
s.require_paths = ["lib".freeze]
|
|
10
10
|
s.authors = ["Lin Jen-Shin (godfat)".freeze]
|
|
11
|
-
s.date = "2026-01-
|
|
11
|
+
s.date = "2026-01-20"
|
|
12
12
|
s.description = "Ruby-Interactive-ruBy -- Yet another interactive Ruby shell\n\nRib is based on the design of [ripl][] and the work of [ripl-rc][], some of\nthe features are also inspired by [pry][]. The aim of Rib is to be fully\nfeatured and yet very easy to opt-out or opt-in other features. It shall\nbe simple, lightweight and modular so that everyone could customize Rib.\n\n[ripl]: https://github.com/cldwalker/ripl\n[ripl-rc]: https://github.com/godfat/ripl-rc\n[pry]: https://github.com/pry/pry".freeze
|
|
13
13
|
s.email = ["godfat (XD) godfat.org".freeze]
|
|
14
14
|
s.executables = [
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rib
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.6.
|
|
4
|
+
version: 1.6.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lin Jen-Shin (godfat)
|
|
8
8
|
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date: 2026-01-
|
|
10
|
+
date: 2026-01-20 00:00:00.000000000 Z
|
|
11
11
|
dependencies: []
|
|
12
12
|
description: |-
|
|
13
13
|
Ruby-Interactive-ruBy -- Yet another interactive Ruby shell
|