hanami-view 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 +4 -10
- data/hanami-view.gemspec +1 -1
- data/lib/hanami/view/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: dc52e88f649a2df1c614b8cf9ca31387ad40b05daad740370e45590edac356b2
|
|
4
|
+
data.tar.gz: 043e40672fd471db72134e8b065d98b9a0c7d29df0a2c9afb4c1e12020047400
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b0bc3ed13fe3d969379f3b8b2d36a8d2a02e01dcff5d20a93b47722fcc21e2778bc00d9c7d32a4959f4431187eb3b7b9692a1bbbdaff411426a6b1e37f82d730
|
|
7
|
+
data.tar.gz: 6235e79ed5d78d1bcae4c7fe9f3506f7e84da1749a7cc689dabdb3deaece8c5b1dbf472b8d2bc1af4881055f70ccf89d2d6a1125a784cfaf2438da3ef7f575cf
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -2,17 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
A view layer for [Hanami](http://hanamirb.org)
|
|
4
4
|
|
|
5
|
-
## Version
|
|
6
|
-
|
|
7
|
-
**This branch contains the code for `hanami-view` 2.x.**
|
|
8
|
-
|
|
9
5
|
## Status
|
|
10
6
|
|
|
11
7
|
[](https://badge.fury.io/rb/hanami-view)
|
|
12
|
-
[](https://github.com/hanami/view/actions?query=workflow%3Aci+branch%3Amain)
|
|
13
9
|
[](https://codecov.io/gh/hanami/view)
|
|
14
10
|
[](https://depfu.com/github/hanami/view?project=Bundler)
|
|
15
|
-
[](http://inch-ci.org/github/hanami/view)
|
|
16
11
|
|
|
17
12
|
## Contact
|
|
18
13
|
|
|
@@ -20,13 +15,12 @@ A view layer for [Hanami](http://hanamirb.org)
|
|
|
20
15
|
* Community: http://hanamirb.org/community
|
|
21
16
|
* Guides: https://guides.hanamirb.org
|
|
22
17
|
* Mailing List: http://hanamirb.org/mailing-list
|
|
23
|
-
* API Doc: http://
|
|
24
|
-
* Bugs/Issues: https://github.com/hanami/view/issues
|
|
18
|
+
* API Doc: http://rubydoc.info/gems/hanami-view
|
|
25
19
|
* Chat: http://chat.hanamirb.org
|
|
26
20
|
|
|
27
21
|
## Rubies
|
|
28
22
|
|
|
29
|
-
__Hanami::
|
|
23
|
+
__Hanami::View__ supports Ruby (MRI) 3.1+
|
|
30
24
|
|
|
31
25
|
## Installation
|
|
32
26
|
|
|
@@ -62,4 +56,4 @@ __Hanami::View__ uses [Semantic Versioning 2.0.0](http://semver.org)
|
|
|
62
56
|
|
|
63
57
|
## Copyright
|
|
64
58
|
|
|
65
|
-
Copyright © 2014 Hanami Team – Released under MIT License
|
|
59
|
+
Copyright © 2014–2024 Hanami Team – Released under MIT License
|
data/hanami-view.gemspec
CHANGED
|
@@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
|
|
|
25
25
|
spec.metadata['source_code_uri'] = 'https://github.com/hanami/view'
|
|
26
26
|
spec.metadata['bug_tracker_uri'] = 'https://github.com/hanami/view/issues'
|
|
27
27
|
|
|
28
|
-
spec.required_ruby_version = ">= 3.
|
|
28
|
+
spec.required_ruby_version = ">= 3.1"
|
|
29
29
|
|
|
30
30
|
spec.add_runtime_dependency "dry-configurable", "~> 1.0"
|
|
31
31
|
spec.add_runtime_dependency "dry-core", "~> 1.0"
|
data/lib/hanami/view/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hanami-view
|
|
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
|
- Tim Riley
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2024-
|
|
12
|
+
date: 2024-07-16 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: dry-configurable
|
|
@@ -210,14 +210,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
210
210
|
requirements:
|
|
211
211
|
- - ">="
|
|
212
212
|
- !ruby/object:Gem::Version
|
|
213
|
-
version: '3.
|
|
213
|
+
version: '3.1'
|
|
214
214
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
215
215
|
requirements:
|
|
216
216
|
- - ">="
|
|
217
217
|
- !ruby/object:Gem::Version
|
|
218
218
|
version: '0'
|
|
219
219
|
requirements: []
|
|
220
|
-
rubygems_version: 3.5.
|
|
220
|
+
rubygems_version: 3.5.9
|
|
221
221
|
signing_key:
|
|
222
222
|
specification_version: 4
|
|
223
223
|
summary: A complete, standalone view rendering system that gives you everything you
|