raki 0.1.3 → 0.1.6

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: 0355da5fc7a77ca9cfb1396c346ca771eb63a66911ba5aa10c240d794190809d
4
- data.tar.gz: 2f2d4257ee535b9eb233c357a0536a071574fb62d83a8ab39cfec112db0b5baa
3
+ metadata.gz: a1b5f93476def82b4c808d1da6aed1c3aad7ba94186bf8d0348e698e16e702f0
4
+ data.tar.gz: 9b541ae30cb31355188cf8a5c51a41686ca5920bed2cd77f8beeeaa0d03df5f6
5
5
  SHA512:
6
- metadata.gz: cb268de1132f55a2aa6a979af9dbd81890f959a99f19c177fc6b418a218bb715bfac3b40c934b673490d199a080ff5b707dfca09df836cc9e96593a7798d6f96
7
- data.tar.gz: 714584442582d65a81d9d8652b81e39a8f8c1ed8d08f1fdfea9c4de69bb46d4291f06321dc5329007c8606595b25ed5b2fb08128a470e3e924d6b956391fed84
6
+ metadata.gz: d6e1ea13acd5ab9b28b1efe4349b4e20e3eebdc15be3ce42d2ec871b4f9431c7cd78c378893982a9b04c678d20c0c17ce1e5e7d805c8d568ba4aa47f3cad7797
7
+ data.tar.gz: 9a3e4c634b45b034526f3e61336bbab5c11d92f92f2de5ba307cb82fa07436567f50a79078c9d917f5ca718d8ec4bb1618a497f61512ad2322d29162640eeefb
data/MIT-LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2020-2025 Dittmar Krall (www.matiq.com)
1
+ Copyright (c) 2020-2026 Dittmar Krall (www.matiq.com)
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -147,5 +147,5 @@ Frozen arguments may avoid some strange behaviour.
147
147
 
148
148
  Heavily inspired by Rack.
149
149
 
150
- Copyright (c) 2020-2025 Dittmar Krall (www.matiq.com),
150
+ Copyright (c) 2020-2026 Dittmar Krall (www.matiq.com),
151
151
  released under the [MIT license](https://opensource.org/licenses/MIT).
data/lib/raki/version.rb CHANGED
@@ -1,5 +1,8 @@
1
1
  module Raki
2
- VERSION = "0.1.3" # 2025-06-22
2
+ VERSION = "0.1.6" # 2026-03-30
3
+ # VERSION = "0.1.5" # 2025-12-27
4
+ # VERSION = "0.1.4" # 2025-12-27
5
+ # VERSION = "0.1.3" # 2025-06-22
3
6
  # VERSION = "0.1.2" # 2023-12-13
4
7
  # VERSION = "0.1.1" # 2023-04-26
5
8
  # VERSION = "0.1.0" # 2021-11-03
@@ -1,5 +1,8 @@
1
1
  module Raki
2
- VERSION = "0.1.2" # 2023-12-13
2
+ VERSION = "0.1.5" # 2025-12-27
3
+ # VERSION = "0.1.4" # 2025-12-27
4
+ # VERSION = "0.1.3" # 2025-06-22
5
+ # VERSION = "0.1.2" # 2023-12-13
3
6
  # VERSION = "0.1.1" # 2023-04-26
4
7
  # VERSION = "0.1.0" # 2021-11-03
5
8
  # VERSION = "0.0.5" # 2021-07-01
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: raki
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dittmar Krall
@@ -68,7 +68,6 @@ files:
68
68
  - lib/raki/builder.rb
69
69
  - lib/raki/chain.rb
70
70
  - lib/raki/idem.rb
71
- - lib/raki/idem.rb.bak
72
71
  - lib/raki/lint.rb
73
72
  - lib/raki/merge.rb
74
73
  - lib/raki/middleware.rb
@@ -86,7 +85,7 @@ require_paths:
86
85
  - lib
87
86
  required_ruby_version: !ruby/object:Gem::Requirement
88
87
  requirements:
89
- - - "~>"
88
+ - - ">="
90
89
  - !ruby/object:Gem::Version
91
90
  version: '3'
92
91
  required_rubygems_version: !ruby/object:Gem::Requirement
@@ -95,7 +94,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
95
94
  - !ruby/object:Gem::Version
96
95
  version: '0'
97
96
  requirements: []
98
- rubygems_version: 3.6.7
97
+ rubygems_version: 4.0.6
99
98
  specification_version: 4
100
99
  summary: Kind of chaining objects
101
100
  test_files: []
data/lib/raki/idem.rb.bak DELETED
@@ -1,10 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # Rreturns "env" (doing nothing)
4
- module Raki
5
- class Idem < Raki::Middleware
6
- def call(env)
7
- env
8
- end
9
- end
10
- end