any_login_multiple 0.1.7 → 0.1.8

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: 1f84a69de66f20bc3b6bbfa23a5ee64a9682c15dc9e743bf64dee6f20d89ff29
4
- data.tar.gz: 45bf301b4176fcbd4436abc4d38198c6a821aee7750bc638721a86f7759e292c
3
+ metadata.gz: 4245d24b49065d7c790a947d6a5ac128f93ed78e03c80119071e5d52ae75f9c9
4
+ data.tar.gz: d21cc1ae2b897096277ba1c3ad90ae026073e001383b848b64a388d76b9e495f
5
5
  SHA512:
6
- metadata.gz: aa1080dc04a2910432f691a423dc813983139a598a2089adbd3001eb66b7ae14ba79249f13223e5470891dc0a77732a2163950dc47e7615e5f2a665a0746c4ba
7
- data.tar.gz: 5fa5a009a4af1a332d6bc62f30827e3e00bf3d4e2346a041df459bbd5ce5623fcd8826a4df2692f160cdc79c16acecb81f16568504c38c692ce19ffc7d083f8b
6
+ metadata.gz: 2e3aa1941a3e642610ce1fbc059e7ef7870b931890df7e732759698682961fed006b92ceafadd1c513ad229dffd63155c3ee18f65fbadace205f4616b491ad56
7
+ data.tar.gz: 1886a01916673cd6fd285a551ecb01fc411d7dc3e6cc372fa3eb606daf8b2ee8bfdbc944714c824bf6446e5dba90e5c5f92a465c545087ff6f0403c43c0941c9
@@ -1,3 +1,3 @@
1
1
  module AnyLoginMultiple
2
- VERSION = '0.1.7'
2
+ VERSION = '0.1.8'
3
3
  end
@@ -13,4 +13,3 @@ module AnyLoginMultiple
13
13
  end
14
14
  end
15
15
 
16
- require 'any_login_multiple/routes'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: any_login_multiple
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - kenzo-tanaka
@@ -54,7 +54,6 @@ files:
54
54
  - lib/any_login_multiple.rb
55
55
  - lib/any_login_multiple/engine.rb
56
56
  - lib/any_login_multiple/helpers.rb
57
- - lib/any_login_multiple/routes.rb
58
57
  - lib/any_login_multiple/version.rb
59
58
  homepage: https://github.com/kenzo-tanaka/any_login_multiple
60
59
  licenses:
@@ -1,7 +0,0 @@
1
- module ActionDispatch::Routing
2
- class Mapper
3
- def mount_routes
4
- mount AnyLoginMultiple::Engine => '/any_login_multiple', as: 'any_login_multiple'
5
- end
6
- end
7
- end