rhino_project_core 0.25.0.beta.3 → 0.25.0.beta.5

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: 71a95db10457514ecb4d3a4fdf617fbb6aeaaef04fc4b0025215e2a292309f2c
4
- data.tar.gz: 6a6252d8c06a1d94cca0ee7f2928b01c0bf28685d61f8471987834f5ae16fac9
3
+ metadata.gz: ddf453dbf0847a280dab30042bc33d1080519d56896a64736c59048c0710ae55
4
+ data.tar.gz: 5c886086b2b0f7323b0bee72b5c907f00467097d96b2f2be6a41c42687b7d33a
5
5
  SHA512:
6
- metadata.gz: b9bed6b230b7c2e738e9f5ab47fd62efa8ec0dc6f332c27b8c7e6aed9ac0ce7db5897e423bfbde67d64460427dad22ed07b1181142153d02e5b04ce004ec0abd
7
- data.tar.gz: 2cfc61f7d736ad2ebb4beb7c9657cea02908f697441db381fe51d0aea5c2773c205c016b8170a30efd95c2792fad4db414d33d3bb8be8047bbba415a883576f4
6
+ metadata.gz: 4ffa735e1958b476e2c01cce7581e59041664dd5c970bf0c562615c36d5e65b27f468baa52e01eabd76373be515fe6722b4b6c695dc12c0b7e4e07915063a254
7
+ data.tar.gz: 89ce7aa7f35a75c1c5e79d1fec3b9ab7721892d7d3d6db28eb8ceee3629d6e15954dae0c5ce9ebf95831558a51d6d2300c4e84feb016b0405a3f22aee15ec9a6
@@ -5,12 +5,10 @@ module Rhino
5
5
  module_function
6
6
 
7
7
  def strategies_metadata
8
- params = { resource_class: "User" }
9
-
10
8
  strategies.each_with_object([]) do |strategy, array|
11
9
  array << {
12
10
  name: strategy,
13
- path: "#{::OmniAuth.config.path_prefix}/#{strategy}?#{params.to_param}"
11
+ path: "#{::OmniAuth.config.path_prefix}/#{strategy}"
14
12
  }
15
13
  end
16
14
  end
@@ -23,7 +21,7 @@ module Rhino
23
21
  match[1].downcase.to_sym
24
22
  end.uniq
25
23
 
26
- strategies += [:developer] if Rails.env.development? && !Rake.try(:application)
24
+ strategies += [:developer] if Rails.env.development?
27
25
 
28
26
  strategies
29
27
  end
@@ -9,9 +9,6 @@ DB_PORT=<%= db_port %>
9
9
  DB_USERNAME=<%= db_user %>
10
10
  DB_PASSWORD=<%= db_password %>
11
11
 
12
- # Client
13
- VITE_API_ROOT_PATH=$ROOT_URL
14
-
15
12
  # Production server:
16
13
  SENDGRID_API_KEY=<api-key>
17
14
 
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.3"
13
+ PRE = "beta.5"
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
16
16
  end
metadata CHANGED
@@ -1,7 +1,7 @@
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.3
4
+ version: 0.25.0.beta.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - JP Rosevear