bp3-action_dispatch 0.1.1 → 0.1.2

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: 047dba7391fc721276bd28109306b4f84184ca61e158d7e89e696ad7f33112de
4
- data.tar.gz: 6610136da8131e6a4f913d6006819e0151f0dd24b60417ca0d2ecce80c28c20f
3
+ metadata.gz: baf8bd779b6a801d1dfecffde05c736c7287e7bf9c31f15681122850e87b60c6
4
+ data.tar.gz: 573171b3f8f1252cef1f0e500d1372ad4a7a94e8f97fdb4413a4401b6027f3dc
5
5
  SHA512:
6
- metadata.gz: 4423575ece656cef98475b38f1c578a7df724bff9d1c93f791ac9bf32c5b440b1a21b45d38ad722c924623588c0869cb1ffcf3e508d2a521aa0783577a397990
7
- data.tar.gz: b239fc0dc12751cf90ab0c18b8153b740b3445b8e3ac382ea90f8ae46751bf351c0d8d421684c175b2bcc95bc423765139b6c09e03b264492e1a562213782c4e
6
+ metadata.gz: 793b8fcf240eb186ea89aa27427ce29ba8d063c8aade74319dd62446971723ffbe78166d30be11c5de6d776951e56ca76b09648910219bc82262f3fc4fea57a2
7
+ data.tar.gz: 3f3ae1847810ab77af4d6ade416d93112f35b1d248595675c608e67e27f58da9f528d433ad88333d75650f51258a18603f29f1ee7f31f7b7b7da52ff3d616699
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.2] - 2024-06-27
4
+
5
+ - Undo making site_class configurable, as it causes problems with
6
+ class reloading
7
+
3
8
  ## [0.1.1] - 2024-05-30
4
9
 
5
10
  - Tweaks and documentation
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bp3-action_dispatch (0.1.1)
4
+ bp3-action_dispatch (0.1.2)
5
5
  actionpack (>= 7.1.2, < 8)
6
6
  activesupport (>= 7.1.2, < 8)
7
7
  i18n (>= 1.8.11, < 2)
@@ -1,10 +1,12 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ # RequestSite is included in ActionDispatch::Request
4
+ # it depends on RequestHost
3
5
  module Bp3
4
6
  module ActionDispatch
5
7
  module RequestSite
6
8
  def request_site
7
- @request_site ||= Bp3::ActionDispatch.site_class.find_host(normalized_host)
9
+ @request_site ||= Sites::Site.find_host(normalized_host)
8
10
  end
9
11
  end
10
12
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Bp3
4
4
  module ActionDispatch
5
- VERSION = '0.1.1'
5
+ VERSION = '0.1.2'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bp3-action_dispatch
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wim den Braven
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-05-30 00:00:00.000000000 Z
11
+ date: 2024-06-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionpack