xmppify 0.0.60 → 0.0.61
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 +4 -4
- data/config/initializers/devise.rb +1 -1
- data/config/routes.rb +1 -1
- data/lib/xmppify/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 70218e6c0f9922dcaf5e7de5c1371e4519300d27
|
4
|
+
data.tar.gz: 699f72c6deae78da9a630ba5d57a3c58bbe48bb7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7db106479af8b5d4a4138957c6b45c76c6c5f82226e8bd112d4aa5b3563c59196e2d3c8b4a78d77efaa8f32e08a07463efb177b2c8c3573fb525c9cb1d333d6a
|
7
|
+
data.tar.gz: 4e491b1db1c14389ce0de94ef65f0844516127edd396aea285db62d6823410885ce2517f4bedceb2367055a4877c623742cf204e4b7a9aa3d02a952cc32dd629
|
@@ -246,7 +246,7 @@ Devise.setup do |config|
|
|
246
246
|
# mount MyEngine, at: '/my_engine'
|
247
247
|
#
|
248
248
|
# The router that invoked `devise_for`, in the example above, would be:
|
249
|
-
|
249
|
+
config.router_name = :xmppify
|
250
250
|
#
|
251
251
|
# When using omniauth, Devise cannot automatically set Omniauth path,
|
252
252
|
# so you need to do it manually. For the users scope, it would be:
|
data/config/routes.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
1
|
Xmppify::Engine.routes.draw do
|
2
|
-
devise_for :users, path_names: {sign_in: "login", signout: "logout"}, controllers: {omniauth_callbacks: "omniauth_callbacks", :invitations => 'invitations', :registrations => "registrations", confirmations: "confirmations"}
|
2
|
+
devise_for :users, path_names: {sign_in: "login", signout: "logout"}, controllers: {omniauth_callbacks: "omniauth_callbacks", :invitations => 'invitations', :registrations => "registrations", confirmations: "confirmations"}, class_name: 'Xmppify::User'
|
3
3
|
root to: 'high_voltage/pages#show', id: 'index'
|
4
4
|
end
|
data/lib/xmppify/version.rb
CHANGED