hanami-webconsole 2.1.0 → 2.2.0.beta1
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 +6 -0
- data/README.md +6 -9
- data/hanami-webconsole.gemspec +1 -0
- data/lib/hanami/webconsole/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: afaed957db6466f97570025f6afe69aa8e41bb7e5ce18ff1ed91180184976043
|
|
4
|
+
data.tar.gz: 0c439a9a1c70b2a2a378688e68910ea851499a0e513ae931beb2d6bcbdc7fe68
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 46d18541565cbf9b7c352d7975dcbe31d1e2f804ce68ad6fe7ba69a0c35809cb60c264873ddbe16bb2055f5699f2f79c0e7bb94ae3c18880f680781b340cc81b
|
|
7
|
+
data.tar.gz: 3dbec22bbd58fc28cacd6f9df55c97b70bb7069367fc1d7587241442023718401403784cc9c83af4cc98a1f121f542623da44189564b5afa7c935f7163305d15
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -2,20 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
[Hanami](http://hanamirb.org) development web console.
|
|
4
4
|
|
|
5
|
-
## Version
|
|
6
|
-
|
|
7
|
-
**This branch contains the code for `hanami-webconsole` 2.x.**
|
|
8
|
-
|
|
9
5
|
## Status
|
|
10
6
|
|
|
11
7
|
[](https://badge.fury.io/rb/hanami-webconsole)
|
|
12
|
-
[](https://github.com/hanami/webconsole/actions?query=workflow%3Aci+branch%3Amain)
|
|
13
9
|
[](https://codecov.io/gh/hanami/webconsole)
|
|
14
10
|
[](https://depfu.com/github/hanami/webconsole?project=Bundler)
|
|
15
|
-
[](http://inch-ci.org/github/hanami/webconsole)
|
|
16
11
|
|
|
17
12
|
## Installation
|
|
18
13
|
|
|
14
|
+
__Hanami::Webconsole__ supports Ruby (MRI) 3.1+.
|
|
15
|
+
|
|
19
16
|
Add this line to your Hanami project's `Gemfile`:
|
|
20
17
|
|
|
21
18
|
```ruby
|
|
@@ -30,7 +27,7 @@ And then execute:
|
|
|
30
27
|
$ bundle install
|
|
31
28
|
```
|
|
32
29
|
|
|
33
|
-
**NOTE:** You need a version of `hanami` `
|
|
30
|
+
**NOTE:** You need a version of `hanami` `2.0.0+`.
|
|
34
31
|
|
|
35
32
|
## Usage
|
|
36
33
|
|
|
@@ -38,7 +35,7 @@ When an exception is raised during your local development in-browser, you'll see
|
|
|
38
35
|
|
|
39
36
|
### Code reloading
|
|
40
37
|
|
|
41
|
-
This gem in
|
|
38
|
+
This gem in **not compatible** with `hanami` code reloading.
|
|
42
39
|
|
|
43
40
|
In order to use this gem, you have two alternatives:
|
|
44
41
|
|
|
@@ -64,4 +61,4 @@ This gem is based on the great work of [`better_errors`](https://rubygems.org/ge
|
|
|
64
61
|
|
|
65
62
|
## Copyright
|
|
66
63
|
|
|
67
|
-
Copyright © 2014 Hanami Team – Released under MIT License
|
|
64
|
+
Copyright © 2014–2024 Hanami Team – Released under MIT License
|
data/hanami-webconsole.gemspec
CHANGED
|
@@ -13,6 +13,7 @@ Gem::Specification.new do |spec|
|
|
|
13
13
|
spec.description = "Hanami webconsole for development"
|
|
14
14
|
spec.homepage = "http://hanamirb.org"
|
|
15
15
|
spec.license = "MIT"
|
|
16
|
+
spec.required_ruby_version = ">= 3.1"
|
|
16
17
|
|
|
17
18
|
spec.files = `git ls-files -- lib/* CHANGELOG.md LICENSE.md README.md hanami-webconsole.gemspec`.split($INPUT_RECORD_SEPARATOR)
|
|
18
19
|
spec.require_paths = ["lib"]
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hanami-webconsole
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.2.0.beta1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Luca Guidi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-07-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: better_errors
|
|
@@ -71,14 +71,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
71
71
|
requirements:
|
|
72
72
|
- - ">="
|
|
73
73
|
- !ruby/object:Gem::Version
|
|
74
|
-
version: '
|
|
74
|
+
version: '3.1'
|
|
75
75
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
76
76
|
requirements:
|
|
77
77
|
- - ">="
|
|
78
78
|
- !ruby/object:Gem::Version
|
|
79
79
|
version: '0'
|
|
80
80
|
requirements: []
|
|
81
|
-
rubygems_version: 3.5.
|
|
81
|
+
rubygems_version: 3.5.9
|
|
82
82
|
signing_key:
|
|
83
83
|
specification_version: 4
|
|
84
84
|
summary: Hanami webconsole
|