spud_core 0.9.18 → 0.9.19

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.
data/README.markdown CHANGED
@@ -44,7 +44,7 @@ Testing
44
44
  Spud uses RSpec for testing. Get the tests running with a few short commands:
45
45
 
46
46
  1. Create and migrate the databases:
47
-
47
+
48
48
  rake db:create
49
49
  rake db:migrate
50
50
 
@@ -60,3 +60,8 @@ After the tests have completed the current code coverage stats is available by o
60
60
 
61
61
 
62
62
  NOTE: Spud Core is Retina Resolution Compatible Now
63
+
64
+ License
65
+ -------
66
+ This software is licensed under the Reciprocal 1.5 License
67
+ http://opensource.org/licenses/rpl
data/config/routes.rb CHANGED
@@ -2,16 +2,16 @@ Rails.application.routes.draw do
2
2
  namespace :spud do
3
3
  resource :user_session
4
4
  resource :user
5
- match 'settings' => "users#settings"
6
- match 'save_key' => "users#save_setting"
5
+ get 'settings' => "users#settings"
6
+ get 'save_key' => "users#save_setting"
7
7
  namespace :admin do
8
8
  root :to => "dashboard#index"
9
9
  resources :users
10
- match 'switch' => "dashboard#switch"
10
+ get 'switch' => "dashboard#switch"
11
11
  end
12
12
  resource :sitemap,:only => [:show]
13
13
  resources :password_resets
14
- match 'setup' => 'setup#index'
14
+ get 'setup' => 'setup#index'
15
15
  end
16
16
 
17
17
  end
@@ -1,5 +1,5 @@
1
1
  module Spud
2
2
  module Core
3
- VERSION = "0.9.18"
3
+ VERSION = "0.9.19"
4
4
  end
5
5
  end