ronflex 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENCE +21 -0
- data/lib/ronflex/errors.rb +1 -1
- data/lib/ronflex/rest.rb +4 -0
- data/lib/ronflex/version.rb +1 -1
- metadata +17 -3
- data/gem_info.txt +0 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c795f7cd84d0990aa00386514a2d7f99c74044238a9db04e32e335af89d2dd14
|
4
|
+
data.tar.gz: 6d69811ae581ab2086aa6df1f73f255883d83baa003bcc75bcc2a12064ba4208
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3580910ba84cc6f04388478dbd21698824bcaad125ac326bc6cb58d10b5335bf21af4337c5bf8b3a9ab22841e715cb7b46483b7d054b2bb09902d441d95f1f3f
|
7
|
+
data.tar.gz: b68eaece1e4866edef9ef94b367b1e549fd7da788c645024ccc9cf5cbe7b7be84ce905c30398505094ad4b17246a3909f7163b5da23c44fee91cf31b1d25dbb1
|
data/LICENCE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2024 VianneySonneville
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/lib/ronflex/errors.rb
CHANGED
data/lib/ronflex/rest.rb
CHANGED
data/lib/ronflex/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ronflex
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- vianney.sonneville
|
@@ -9,7 +9,21 @@ autorequire:
|
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
11
|
date: 2024-11-29 00:00:00.000000000 Z
|
12
|
-
dependencies:
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rack
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
13
27
|
description: Ronflex is a Ruby gem that provides a middleware for managing requests
|
14
28
|
and displaying a custom maintenance page during downtime or maintenance. It also
|
15
29
|
offers configuration options to handle user access and authorization rules, making
|
@@ -21,9 +35,9 @@ extensions: []
|
|
21
35
|
extra_rdoc_files: []
|
22
36
|
files:
|
23
37
|
- CHANGELOG.md
|
38
|
+
- LICENCE
|
24
39
|
- README.md
|
25
40
|
- Rakefile
|
26
|
-
- gem_info.txt
|
27
41
|
- lib/ronflex.rb
|
28
42
|
- lib/ronflex/configuration.rb
|
29
43
|
- lib/ronflex/errors.rb
|