pg_rails 7.6.1 → 7.6.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: 9e8749da8dcc608499fc64c9af83a9889069d9384e861508688c40e41b33ae52
4
- data.tar.gz: 51fcd1231c11477379842419333ceda58bd14b1ca5d058fdf0775b92b6caf867
3
+ metadata.gz: 49f9abe4c2e4521dd99abe5a9220e3bece6ceb0e182c1a7d1fe252d836977bbf
4
+ data.tar.gz: 105da76663a6b29c338c45cb0e46d2663b99c7463a91beb734771f34dd668319
5
5
  SHA512:
6
- metadata.gz: 06c02fbcf25d4eb7c34c8272d9b3e3f0af6a93052a882cdc8adb1f17452b39dc002145e19cd17321e6a273216393309e7b9d0efac307aa9fc33b9348fd9dc999
7
- data.tar.gz: 2a3bc5f762458f385813fbba264e9644843680d6d924a77bbb671711bd6c3fe06adb14cae59453dc38f2614fbefda264101f12106f0720e12c66c8d2bd967c39
6
+ metadata.gz: 344c3c89251c75d50c9ace0a1dac02d69ecb1d04e1392d330225c4496e7bfc5c24718cfb98c0c6843c24e5402d22b399d203cdbd6c3826c6f2cb9b8271b7da9e
7
+ data.tar.gz: bb74de3073bb722ee4444a726306db6759c21e3ddc61e3f2a36e988b4ff688d72e31611d6168c2e936366d79c503924056da03ebd8f23dc7e07750cfb0ec2231
@@ -8,6 +8,7 @@ module PgEngine
8
8
  def show
9
9
  check_redis
10
10
  check_postgres
11
+ check_websocket
11
12
  render_up
12
13
  end
13
14
 
@@ -25,6 +26,35 @@ module PgEngine
25
26
  raise PgEngine::Error, 'redis is down'
26
27
  end
27
28
 
29
+ # rubocop:disable Metrics/MethodLength
30
+ def check_websocket
31
+ result = nil
32
+ begin
33
+ Timeout.timeout(5) do
34
+ EM.run do
35
+ url = Rails.application.config.action_cable.url
36
+ ws = Faye::WebSocket::Client.new(url)
37
+
38
+ ws.on :message do |event|
39
+ type = JSON.parse(event.data)['type']
40
+ if type == 'welcome'
41
+ result = :success
42
+ ws.close
43
+ EM.stop
44
+ end
45
+ end
46
+ end
47
+ end
48
+ rescue Timeout::Error
49
+ raise PgEngine::Error, 'websocket server is down'
50
+ end
51
+
52
+ return if result == :success
53
+
54
+ raise PgEngine::Error, 'websocket server is down'
55
+ end
56
+ # rubocop:enable Metrics/MethodLength
57
+
28
58
  def render_up
29
59
  render html: html_status(color: '#005500')
30
60
  end
@@ -11,7 +11,7 @@ module Users
11
11
  resource.save
12
12
  yield resource if block_given?
13
13
  if resource.persisted?
14
- create_account_for(resource)
14
+ create_account_for(resource) if ActsAsTenant.current_tenant.blank?
15
15
 
16
16
  expire_data_after_sign_in!
17
17
  render_message
@@ -16,6 +16,11 @@ es:
16
16
  index:
17
17
  empty: 'No hay %{model} que mostrar'
18
18
  empty_but_filtered: 'No hay %{model} para los filtros aplicados'
19
+ gender:
20
+ reset_password_token: m
21
+ confirmation_token: m
22
+ unlock_token: m
23
+ current_password: f
19
24
  attributes:
20
25
  external_labels: Etiquetas externas
21
26
  external_source: Fuente externa
@@ -55,6 +55,8 @@ require 'noticed'
55
55
  require 'ransack'
56
56
  require 'ransack_memory'
57
57
  require 'holidays'
58
+ require 'faye/websocket'
59
+ require 'eventmachine'
58
60
 
59
61
  if Rails.env.local?
60
62
  require 'letter_opener'
@@ -69,6 +69,25 @@ describe 'registrations controller' do
69
69
  expect { subject }.not_to change(Account, :count)
70
70
  end
71
71
  end
72
+
73
+ context 'cuando hay tenant' do
74
+ before do
75
+ host! 'bien.localhost.com'
76
+ create :account, subdomain: 'bien'
77
+ end
78
+
79
+ it do
80
+ expect { subject }.to change(User, :count).by(1)
81
+ end
82
+
83
+ it do
84
+ expect { subject }.to change(UserAccount, :count).by(1)
85
+ end
86
+
87
+ it do
88
+ expect { subject }.not_to change(Account, :count)
89
+ end
90
+ end
72
91
  end
73
92
 
74
93
  describe '#edit' do
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PgRails
4
- VERSION = '7.6.1'
4
+ VERSION = '7.6.2'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pg_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.6.1
4
+ version: 7.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Martín Rosso
@@ -80,6 +80,20 @@ dependencies:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: '5.0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: faye-websocket
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '0.11'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '0.11'
83
97
  - !ruby/object:Gem::Dependency
84
98
  name: acts_as_tenant
85
99
  requirement: !ruby/object:Gem::Requirement