hanami-webconsole 2.1.0 → 2.2.0.beta2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '038deb624f22757faa69bc9b7dcc1b02db60e50ad6dfaca3c056af1b69e2f34a'
4
- data.tar.gz: 234f640b484b9cf157ad1909511cd5966589cb14fa036e99a972265af1493487
3
+ metadata.gz: 6fa60f16d2de1701a8e0e8e29f6cadb67b1d42d8554519f5d9e89c3b5a1e1cff
4
+ data.tar.gz: 9f0ad52d74a99f5ff551a9d13dfa1c9a6b921ba4b06081a68e1e380ee4c88c80
5
5
  SHA512:
6
- metadata.gz: 56e6e9c0896db4683bf920a7325612db5b48311b6d0d43783f08e4e66b6ee6f0385c7d38d0521759fd06b151892321a5b4af85f578838f968f9abaf3fa680e97
7
- data.tar.gz: 3eea21f308726dd77e605ec6e876954d73225dfd8ac13a1959f950e3c53f7e7b454bf1a856f24b797efaa85a99fa8463160b1609df3794f1caefd9e5037b1cdd
6
+ metadata.gz: 554df56946921dc880b9a1cef83097bd7dd0ea488203782d406f3ca1aef449ae02ecf8b3614c6b62498c64b980082b6f25cf20321f2963c3a09ea9f50f7b0e0a
7
+ data.tar.gz: f333955febec7cbac1ea70db8c35e0844153afa01d44eaf292fa65418ed7c49451e19bd4cc1dfa3aeb105af2f54f1b3a4dd4d6bc10565a27e08861f56542f996
data/CHANGELOG.md CHANGED
@@ -1,6 +1,14 @@
1
1
  # Hanami::Webconsole
2
2
  Hanami development web console.
3
3
 
4
+ ## v2.2.0.beta2 - 2024-09-25
5
+
6
+ ## v2.2.0.beta1 - 2024-07-16
7
+
8
+ ### Changed
9
+
10
+ - Drop support for Ruby 3.0
11
+
4
12
  ## v2.1.0 - 2024-02-27
5
13
 
6
14
  ## 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.beta2"
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.beta2
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-09-25 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.16
82
82
  signing_key:
83
83
  specification_version: 4
84
84
  summary: Hanami webconsole