accountly 0.0.4 → 0.0.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.
@@ -6,7 +6,7 @@ Accountly::Engine.routes.draw do
6
6
  resources :usernames, :only => [:new, :create]
7
7
  resources :passwords, :only => [:new, :create]
8
8
  resources :emails, :only => [:new, :create]
9
- resources :users
9
+
10
10
 
11
11
  match 'new_email(/:token)' => 'confirmation#new_email', as: 'confirm_new_email', via: [:get, :post]
12
12
 
@@ -0,0 +1,14 @@
1
+ Accountly::Engine.routes.draw do
2
+
3
+ root to: 'settings#index'
4
+
5
+ get 'settings' => 'settings#index'
6
+ resources :usernames, :only => [:new, :create]
7
+ resources :passwords, :only => [:new, :create]
8
+ resources :emails, :only => [:new, :create]
9
+ resources :users
10
+
11
+ match 'new_email(/:token)' => 'confirmation#new_email', as: 'confirm_new_email', via: [:get, :post]
12
+
13
+ default_url_options :host => 'localhost:3000'
14
+ end
@@ -1,3 +1,3 @@
1
1
  module Accountly
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
@@ -1,3 +1,3 @@
1
1
  module Accountly
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: accountly
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -246,6 +246,7 @@ files:
246
246
  - config/locales/en.yml
247
247
  - config/locales/en.bootstrap.yml
248
248
  - config/locales/de.yml~
249
+ - config/routes.rb~
249
250
  - config/routes.rb
250
251
  - lib/accountly/engine.rb
251
252
  - lib/accountly/version.rb