rhino_project_core 0.25.0.beta.2 → 0.25.0.beta.4

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: 67c66dd273e96b16827ec4b0322b8cb09d9b8b80baa58a54192b60ada35ac571
4
- data.tar.gz: 5a49dc759ac7c2c0dd74a23723290a9b3e7be0060e13f105c33e7301f4aa1747
3
+ metadata.gz: b54a72fe2515e160aa5e4a1e26ad7605a332aa1311a6769ea281ea8e7d82cf1e
4
+ data.tar.gz: 97f8dd1a4e52117a43093afd5f7c96e83268f73908e4520ff135b0b04d77c737
5
5
  SHA512:
6
- metadata.gz: 6c88679a57ec5ac9ef1292ed105400fa376968278dc8f6e680ddf31d2bd03d3142d8ea7dda7795cd4dabd8f7aaca3976408f64549e108b3083f5334fabfba045
7
- data.tar.gz: d39e3e592171aa3bee3ed5a21d4baf5d6ac6a31b468d8722f726902c3a3337f7e05e4083b1d16cf637bfca9d68edb658b1491b8200f4bf435c530517926bff08
6
+ metadata.gz: 3ad5dff864438f3d90f9dfad310f4fccddfeddf4335ad6ee81586b6e8ed8484bc66a18497a95bbfdb23e1dd6a27a51134971aa361aaac2ec9e2e76bc02aa053e
7
+ data.tar.gz: 8ad18af3ca5e0bc9f9be336f29389ab0ef268a6a25ffc1ad1a645b3ef7337683dcc4109bb13fdb9baa596d4f1678db0fcf9b422f5c7a59adb2f98fa9256ee7e5
@@ -23,7 +23,7 @@ module Rhino
23
23
  match[1].downcase.to_sym
24
24
  end.uniq
25
25
 
26
- strategies += [:developer] if Rails.env.development? && !Rake.try(:application)
26
+ strategies += [:developer] if Rails.env.development?
27
27
 
28
28
  strategies
29
29
  end
@@ -5,7 +5,7 @@ module DeviseTokenAuth::ConfirmationsController::Extensions
5
5
  def show
6
6
  super
7
7
  rescue StandardError
8
- redirect_to ENV["FRONT_END_URL"]
8
+ redirect_to ENV["ROOT_URL"]
9
9
  end
10
10
  end
11
11
 
@@ -4,6 +4,6 @@ class DeviseTokenAuth::PasswordsController
4
4
  # If there is an error preparing to edit the password, redirect to frontend
5
5
  # This would normally be an expired password token
6
6
  def render_edit_error
7
- redirect_to "#{ENV['FRONT_END_URL']}/auth/reset-password/expired"
7
+ redirect_to "#{ENV['ROOT_URL']}/auth/reset-password/expired"
8
8
  end
9
9
  end
@@ -2,7 +2,6 @@ PORT=<%= server_port %>
2
2
 
3
3
  # Server
4
4
  ROOT_URL=http://localhost:$PORT
5
- FRONT_END_URL=http://localhost:$PORT
6
5
 
7
6
  DB_NAME=<%= db_name %>
8
7
  DB_HOST=<%= db_host %>
@@ -66,6 +66,6 @@ DeviseTokenAuth.setup do |config|
66
66
  # send email, set it to true. (This is a setting for compatibility)
67
67
  # config.send_confirmation_email = true
68
68
 
69
- config.default_confirm_success_url = "#{ENV['FRONT_END_URL']}/auth/signin"
70
- config.default_password_reset_url = "#{ENV['FRONT_END_URL']}/auth/reset-password"
69
+ config.default_confirm_success_url = "#{ENV['ROOT_URL']}/auth/signin"
70
+ config.default_password_reset_url = "#{ENV['ROOT_URL']}/auth/reset-password"
71
71
  end
data/lib/rhino/version.rb CHANGED
@@ -10,7 +10,7 @@ module Rhino
10
10
  MAJOR = 0
11
11
  MINOR = 25
12
12
  TINY = 0
13
- PRE = "beta.2"
13
+ PRE = "beta.4"
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
16
16
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rhino_project_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.25.0.beta.2
4
+ version: 0.25.0.beta.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - JP Rosevear
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-02-01 00:00:00.000000000 Z
10
+ date: 2025-02-02 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: rails