hanami-webconsole 2.3.0.beta2 → 2.3.1
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 +26 -0
- data/README.md +0 -4
- data/hanami-webconsole.gemspec +2 -2
- data/lib/hanami/webconsole/version.rb +1 -1
- data/lib/hanami/webconsole.rb +16 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bd3c903aa25da2632b88c5459a241700799a3ee81ee2d17a576bbbe67fdf9e7a
|
|
4
|
+
data.tar.gz: df091415c3bee1b9fd342f619c652461e50fe01e5c53488e92098df418192a7b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 85bd0c73d14595406dcdf00077b2d77f6d0b618d09a525b42a72843ae002a0be4250f01712dd563c8d35ccd8399989c46474e0cd310d43dbb17f216959a4f470
|
|
7
|
+
data.tar.gz: 3c9b52bc06a8428881d17dac5e1370448c3c3ff86e6a4988915377a3ada7e301a1f080c8119d1c56505c4a00d579d63a60b192326fc21408fc0f741581b724fb
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,32 @@
|
|
|
2
2
|
|
|
3
3
|
Hanami development web console.
|
|
4
4
|
|
|
5
|
+
## [Unreleased]
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
### Deprecated
|
|
12
|
+
|
|
13
|
+
### Removed
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
### Security
|
|
18
|
+
|
|
19
|
+
[Unreleased]: https://github.com/hanami/hanami-webconsole/compare/v2.3.1...main
|
|
20
|
+
|
|
21
|
+
## [v2.3.1] - 2025-12-18
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
- Bypass binding_of_caller's Ruby version check and load its functionality directly. This ensures it continues to work when running under Ruby 4.0. (@timriley in #12)
|
|
26
|
+
|
|
27
|
+
[v2.3.1]: https://github.com/hanami/hanami-webconsole/compare/v2.3.0...v2.3.1
|
|
28
|
+
|
|
29
|
+
## v2.3.0 - 2025-11-12
|
|
30
|
+
|
|
5
31
|
## v2.3.0.beta2 - 2025-10-17
|
|
6
32
|
|
|
7
33
|
### Changed
|
data/README.md
CHANGED
|
@@ -6,13 +6,9 @@
|
|
|
6
6
|
|
|
7
7
|
[](https://badge.fury.io/rb/hanami-webconsole)
|
|
8
8
|
[](https://github.com/hanami/webconsole/actions?query=workflow%3Aci+branch%3Amain)
|
|
9
|
-
[](https://codecov.io/gh/hanami/webconsole)
|
|
10
|
-
[](https://depfu.com/github/hanami/webconsole?project=Bundler)
|
|
11
9
|
|
|
12
10
|
## Installation
|
|
13
11
|
|
|
14
|
-
__Hanami::Webconsole__ supports Ruby (MRI) 3.1+.
|
|
15
|
-
|
|
16
12
|
Add this line to your Hanami project's `Gemfile`:
|
|
17
13
|
|
|
18
14
|
```ruby
|
data/hanami-webconsole.gemspec
CHANGED
|
@@ -7,8 +7,8 @@ require "hanami/webconsole/version"
|
|
|
7
7
|
Gem::Specification.new do |spec|
|
|
8
8
|
spec.name = "hanami-webconsole"
|
|
9
9
|
spec.version = Hanami::Webconsole::VERSION
|
|
10
|
-
spec.authors = ["
|
|
11
|
-
spec.email = ["
|
|
10
|
+
spec.authors = ["Hanakai team"]
|
|
11
|
+
spec.email = ["info@hanakai.org"]
|
|
12
12
|
spec.summary = "Hanami webconsole"
|
|
13
13
|
spec.description = "Hanami webconsole for development"
|
|
14
14
|
spec.homepage = "http://hanamirb.org"
|
data/lib/hanami/webconsole.rb
CHANGED
|
@@ -1,7 +1,22 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
+
if RUBY_ENGINE == "ruby"
|
|
4
|
+
# Skip binding_of_caller's version check and force it to load on Ruby 4.0.
|
|
5
|
+
#
|
|
6
|
+
# Remove this shim once https://github.com/banister/binding_of_caller/pull/90 is merged and a new
|
|
7
|
+
# release has been made.
|
|
8
|
+
require "binding_of_caller/version"
|
|
9
|
+
require "binding_of_caller/mri"
|
|
10
|
+
|
|
11
|
+
# Prevent a direct require to "binding_of_caller", which is no longer needed by this point, and
|
|
12
|
+
# which prints a misleading warning about it not supporting Ruby 4.0, which we've fixed ourselves
|
|
13
|
+
# via the above.
|
|
14
|
+
$LOADED_FEATURES << "binding_of_caller.rb"
|
|
15
|
+
else
|
|
16
|
+
require "binding_of_caller"
|
|
17
|
+
end
|
|
18
|
+
|
|
3
19
|
require "better_errors"
|
|
4
|
-
require "binding_of_caller"
|
|
5
20
|
|
|
6
21
|
module Hanami
|
|
7
22
|
# Hanami web console for development
|
metadata
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hanami-webconsole
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.3.
|
|
4
|
+
version: 2.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
7
|
+
- Hanakai team
|
|
8
8
|
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
10
|
date: 1980-01-02 00:00:00.000000000 Z
|
|
@@ -45,7 +45,7 @@ dependencies:
|
|
|
45
45
|
version: '1.0'
|
|
46
46
|
description: Hanami webconsole for development
|
|
47
47
|
email:
|
|
48
|
-
-
|
|
48
|
+
- info@hanakai.org
|
|
49
49
|
executables: []
|
|
50
50
|
extensions: []
|
|
51
51
|
extra_rdoc_files: []
|