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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '038deb624f22757faa69bc9b7dcc1b02db60e50ad6dfaca3c056af1b69e2f34a'
4
- data.tar.gz: 234f640b484b9cf157ad1909511cd5966589cb14fa036e99a972265af1493487
3
+ metadata.gz: afaed957db6466f97570025f6afe69aa8e41bb7e5ce18ff1ed91180184976043
4
+ data.tar.gz: 0c439a9a1c70b2a2a378688e68910ea851499a0e513ae931beb2d6bcbdc7fe68
5
5
  SHA512:
6
- metadata.gz: 56e6e9c0896db4683bf920a7325612db5b48311b6d0d43783f08e4e66b6ee6f0385c7d38d0521759fd06b151892321a5b4af85f578838f968f9abaf3fa680e97
7
- data.tar.gz: 3eea21f308726dd77e605ec6e876954d73225dfd8ac13a1959f950e3c53f7e7b454bf1a856f24b797efaa85a99fa8463160b1609df3794f1caefd9e5037b1cdd
6
+ metadata.gz: 46d18541565cbf9b7c352d7975dcbe31d1e2f804ce68ad6fe7ba69a0c35809cb60c264873ddbe16bb2055f5699f2f79c0e7bb94ae3c18880f680781b340cc81b
7
+ data.tar.gz: 3dbec22bbd58fc28cacd6f9df55c97b70bb7069367fc1d7587241442023718401403784cc9c83af4cc98a1f121f542623da44189564b5afa7c935f7163305d15
data/CHANGELOG.md CHANGED
@@ -1,6 +1,12 @@
1
1
  # Hanami::Webconsole
2
2
  Hanami development web console.
3
3
 
4
+ ## v2.2.0.beta1 - 2024-07-16
5
+
6
+ ### Changed
7
+
8
+ - Drop support for Ruby 3.0
9
+
4
10
  ## v2.1.0 - 2024-02-27
5
11
 
6
12
  ## v2.1.0.rc3 - 2024-02-16
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
  [![Gem Version](https://badge.fury.io/rb/hanami-webconsole.svg)](https://badge.fury.io/rb/hanami-webconsole)
12
- [![CI](https://github.com/hanami/webconsole/workflows/ci/badge.svg?branch=main)](https://github.com/hanami/webconsole/actions?query=workflow%3Aci+branch%3Amain)
8
+ [![CI](https://github.com/hanami/webconsole/actions/workflows/ci.yml/badge.svg)](https://github.com/hanami/webconsole/actions?query=workflow%3Aci+branch%3Amain)
13
9
  [![Test Coverage](https://codecov.io/gh/hanami/webconsole/branch/main/graph/badge.svg)](https://codecov.io/gh/hanami/webconsole)
14
10
  [![Depfu](https://badges.depfu.com/badges/a8545fb67cf32a2c75b6227bc0821027/overview.svg)](https://depfu.com/github/hanami/webconsole?project=Bundler)
15
- [![Inline Docs](http://inch-ci.org/github/hanami/webconsole.svg)](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` `1.2.0+`.
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 incompatible with `hanami` code reloading.
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
@@ -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"]
@@ -3,6 +3,6 @@
3
3
  module Hanami
4
4
  module Webconsole
5
5
  # @since 0.1.0
6
- VERSION = "2.1.0"
6
+ VERSION = "2.2.0.beta1"
7
7
  end
8
8
  end
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.1.0
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-02-27 00:00:00.000000000 Z
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: '0'
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.6
81
+ rubygems_version: 3.5.9
82
82
  signing_key:
83
83
  specification_version: 4
84
84
  summary: Hanami webconsole