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 +6 -1
- data/config/routes.rb +4 -4
- data/lib/spud_core/version.rb +1 -1
- data/spec/dummy/log/test.log +1540 -0
- metadata +4 -4
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
|
-
|
6
|
-
|
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
|
-
|
10
|
+
get 'switch' => "dashboard#switch"
|
11
11
|
end
|
12
12
|
resource :sitemap,:only => [:show]
|
13
13
|
resources :password_resets
|
14
|
-
|
14
|
+
get 'setup' => 'setup#index'
|
15
15
|
end
|
16
16
|
|
17
17
|
end
|
data/lib/spud_core/version.rb
CHANGED