summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorMrYummy <elemental428@gmail.com>2017-05-28 17:46:54 -0400
committerMrYummy <elemental428@gmail.com>2017-06-18 13:11:36 -0400
commite7463524af03a62b8ba4adbdee29efe5f547c2d4 (patch)
tree6167b813e733994f3b789b3bc0ef880d6efc6440 /config
parenta24d26dd7c9c829b28732174ed5f5ff2d4448bfb (diff)
Added Who's Playing? screen
Diffstat (limited to 'config')
-rw-r--r--config/database.yml2
-rw-r--r--config/environments/development.rb4
-rw-r--r--config/routes.rb3
3 files changed, 6 insertions, 3 deletions
diff --git a/config/database.yml b/config/database.yml
index f421bef..db672c6 100644
--- a/config/database.yml
+++ b/config/database.yml
@@ -24,4 +24,4 @@ test:
adapter: sqlite3
database: db/test.sqlite3
pool: 5
- timeout: 5000 \ No newline at end of file
+ timeout: 5000
diff --git a/config/environments/development.rb b/config/environments/development.rb
index 06819fd..bfa0c96 100644
--- a/config/environments/development.rb
+++ b/config/environments/development.rb
@@ -6,6 +6,8 @@ Redstoner::Application.configure do
# since you don't have to restart the web server when you make code changes.
config.cache_classes = false
+ config.action_controller.perform_caching = true
+
# Log error messages when you accidentally call methods on nil.
config.whiny_nils = true
@@ -43,4 +45,4 @@ Redstoner::Application.configure do
password: ENV["GMAIL_PASSWORD"],
}
-end \ No newline at end of file
+end
diff --git a/config/routes.rb b/config/routes.rb
index 584c94f..f79ab5b 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -4,10 +4,11 @@ Redstoner::Application.routes.draw do
resources :comments
end
- resources :statics, only: [:home, :donate], path: '/' do
+ resources :statics, only: [:home, :donate, :online], path: '/' do
collection do
get 'donate'
get 'home'
+ get 'online'
get 'index'
end
end