tzispa 0.4.16 → 0.4.17

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
  SHA1:
3
- metadata.gz: 210b3ade3e73dabae1b524cb527eafe85b4d188d
4
- data.tar.gz: f79ec50b9f89adc27c78cd6a8866eaa5dddc2966
3
+ metadata.gz: db6ad8651dc23b0e5fc821507997bbe5852fd183
4
+ data.tar.gz: faaa33378bbaf43503ea90dbaf4a5cb691e8092a
5
5
  SHA512:
6
- metadata.gz: d466ff27221ebba0b9e7f39e890ab22240586f6008a18913366e1d14dcfb66e3ccb825cd9c3c2689b538f535a5b202021dafe86f690c764c9347e6391dd084de
7
- data.tar.gz: fd36aaa6d64efe67dd8182449f2d2e508733017007584059e6a5c7d98f4eb502ee500d4755dddd995407b323900eff67f126b0f17a305021e2bffc943b74a365
6
+ metadata.gz: 0c3861995da2e684ceff1d88e8edc6a85b0ff45c4ad2496939190a86083ebbfe9c91924a0cc83b0de58a3a3c7af50bc77ae88191c76fdf44f75c31e2f8e7f3f7
7
+ data.tar.gz: 727516e2a9644f04d436ff760c0ef8432d1155091fb3beadc5974932e07a3b89f3eb3c06fe67c4c5f0ac2de8ff485ce14abf81826113cf2420edcdee2a678e69
data/CHANGELOG.md CHANGED
@@ -2,6 +2,9 @@ Tzispa
2
2
 
3
3
  General purpose web framework
4
4
 
5
+ ## v0.4.17
6
+ - response_verb is send to the conttroller not to the handler ...
7
+
5
8
  ## v0.4.16
6
9
  - check response_verb before send it to the handler in controller/api
7
10
  - move routes from app-class to app-instance
@@ -26,7 +26,7 @@ module Tzispa
26
26
  @predicate = context.router_params[:predicate]
27
27
  @hnd = handler_class.new(context)
28
28
  @predicate ? hnd.send(@verb, @predicate) : hnd.send(@verb)
29
- send hnd.response_verb if hnd.response_verb && hnd.respond_to?(hnd.response_verb)
29
+ send hnd.response_verb if hnd.response_verb
30
30
  response.finish
31
31
  end
32
32
 
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Tzispa
4
- VERSION = '0.4.16'
4
+ VERSION = '0.4.17'
5
5
  FRAMEWORK_NAME = 'Tzispa'
6
6
  GEM_NAME = 'tzispa'
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tzispa
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.16
4
+ version: 0.4.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juan Antonio Piñero