spud_core 0.9.20 → 0.9.21

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 ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ MDYyOWY0OThhZGNlN2ViZjdhZWI3NDg0N2JiZTEzZjA2YTNhMjcxNQ==
5
+ data.tar.gz: !binary |-
6
+ NjllMDBiMWU2ZWVkOTVjMDlkMDZjM2JlY2JiM2MzYmRjMTEyNzM5OA==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ YTEwM2ZjZGE5YTZhMjMyM2JlMTJhYWI4Y2JlNmRlOTRmM2FkMDUzMmY4YThk
10
+ ZTM3NjIxNGFkM2UzOTJjMjMwZDg4MjViMmNkM2QwMGYxMzE3NzI3Y2JkMTQ4
11
+ NGI4NzQxNzNmODJlODgxYjJjMTY0ZTE3M2Y3MDA0M2JlYzhlMGQ=
12
+ data.tar.gz: !binary |-
13
+ MDY1ODY2ODliNjhjNDAzYmI5NWY2YWE1YzFkMjU1ZmVkOGJiNDE0N2JlMjll
14
+ NjJkMGFjNWNhODQzNjJlZTI2MTgwMjI2YTBkODhlMzQ2NWMyOTc5MWRmMmM2
15
+ MWU0MTFlZWJiODY1YWViOTI1MzI2ODNjOGY3MDExODAxMDg4NTI=
data/config/routes.rb CHANGED
@@ -7,13 +7,14 @@ Rails.application.routes.draw do
7
7
  namespace :admin do
8
8
  root :to => "dashboard#index"
9
9
  resources :users
10
- get 'switch' => "dashboard#switch"
10
+ get 'switch' => "dashboard#switch"
11
+ post 'switch' => "dashboard#switch"
11
12
  end
12
13
  resource :sitemap,:only => [:show]
13
14
  resources :password_resets
14
15
  get 'setup' => 'setup#index'
15
16
  post 'setup' => 'setup#index'
16
17
  end
17
-
18
+
18
19
  end
19
20
 
@@ -1,5 +1,5 @@
1
1
  module Spud
2
2
  module Core
3
- VERSION = "0.9.20"
3
+ VERSION = "0.9.21"
4
4
  end
5
5
  end