rack-app 3.2.0 → 3.2.1

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: cc5f8fe7cb10a7526f5ffaa5d554ee86ec85dd49
4
- data.tar.gz: 0fff8341fba579752f6c05720b2355564b19e1c1
3
+ metadata.gz: e81d69d4232df5dc2cf8b2b5461bf89055502b23
4
+ data.tar.gz: 7260522a23cd1cb462df33b6056c77494e4669c5
5
5
  SHA512:
6
- metadata.gz: 115d44b4a0faa00d8bf099e2224ee2f6af5d133157b331d24b297b0f7c75bd22126765bb0a1c7a491175187df08ecca6504f0f5d259dc22efa693212af760c12
7
- data.tar.gz: 7920c391d960faee68d9e28ab6fb4784561880a9e8201c97e5d0819ff7fd0e85cfc2921f5e3e0e72b079692b901e113ff24f9d62a1d94a041ae08e3ac9ba23fc
6
+ metadata.gz: b7a7924188fd13e34a082a4d3d4f315e7badb23a7a14ee9395a94feede3da32138bb25db02bb1d577268362f73551139db315b564af2c98bbf9ac665c6422ba0
7
+ data.tar.gz: 7b2043952a7a021e15a8b7907b90b402f4b33a25b84c9c7cdd4a9a150f23f1548e05b61eb70a87647517606ec9c0c8dacfb04f802d009e6459ce6bcce3233c2c
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.2.0
1
+ 3.2.1
@@ -13,8 +13,6 @@ class Rack::App::Endpoint
13
13
 
14
14
  @middleware = (properties[:middleware] || Rack::Builder.new).dup
15
15
  @middleware.run(lambda { |env| self.execute(env) })
16
-
17
- @path_params_matcher = {}
18
16
  @endpoint_method_name = register_method_to_app_class(properties[:user_defined_logic])
19
17
 
20
18
  @app = @middleware.to_app
@@ -40,16 +38,10 @@ class Rack::App::Endpoint
40
38
  request_handler.request = rack_request
41
39
  request_handler.response = rack_response
42
40
 
43
- rack_request.env[::Rack::App::Constants::PATH_PARAMS_MATCHER]= @path_params_matcher.dup
44
41
  return @error_handler.execute_with_error_handling_for(request_handler, @endpoint_method_name)
45
42
 
46
43
  end
47
44
 
48
- def register_path_params_matcher(params_matcher)
49
- @path_params_matcher.clear
50
- @path_params_matcher.merge!(params_matcher)
51
- end
52
-
53
45
  protected
54
46
 
55
47
  def set_response_body(response, result)
@@ -145,6 +145,7 @@ class Rack::App::Router::Dynamic < Rack::App::Router::Base
145
145
 
146
146
  def format_env(context, env)
147
147
  mount_path = context[:options][:mount_path] rescue ''
148
+ env[::Rack::App::Constants::PATH_PARAMS_MATCHER]= context[:options][:path_params].dup
148
149
  env[::Rack::PATH_INFO].sub!(mount_path, '')
149
150
  end
150
151
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rack-app
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.0
4
+ version: 3.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Luzsi