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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e15cbe824c0b6ff3bb2d775a76d1265a5629efc0f27ba32c68c1c0fc8dec2823
4
- data.tar.gz: 9817d441536e7e10018699f064a1e75d5f9debf11a556ede8fc6b4b8ca4b93a2
3
+ metadata.gz: 81b816efeeca6a4312c7e4261fc6e59d823ae274aaa3a63fc334943e019aa448
4
+ data.tar.gz: 3a3710f06cd4decb48706a17ca8826fb48ad949fdbed572c2ee7a4027a8503cf
5
5
  SHA512:
6
- metadata.gz: 1bfa2b9646cfaf5c33e62c2106c11c966d8dfd8921339c29fba6e83c5bbcfd9b3ed3e3a5151f3e442b87cc18c5d55fb24f8739a5f51e54bd21aea62ae7c8a29a
7
- data.tar.gz: f464497efab48ecd2a02c36770adab22da186bb9d300814062aee1532f6884d7e4b290f4d8cdb8d8350d7d6bc4adc7ffaae0497ab2f3e1d2be4149db2625c9ad
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
- * Fixed multiline and colorization compatibility for prism parser
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 `.+?'/ } || -1]
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Rib
4
- VERSION = '1.6.2'
4
+ VERSION = '1.6.3'
5
5
  end
data/rib.gemspec CHANGED
@@ -1,14 +1,14 @@
1
1
  # -*- encoding: utf-8 -*-
2
- # stub: rib 1.6.2 ruby lib
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.2".freeze
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-19"
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.2
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-19 00:00:00.000000000 Z
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