diff options
| author | Teddy Wing | 2015-12-30 17:17:02 -0800 |
|---|---|---|
| committer | Teddy Wing | 2015-12-30 17:45:27 -0800 |
| commit | bf83780f6ee7f44c40409048ea9f2ebc177d6681 (patch) | |
| tree | 502c970aa24da183607fb4854db71d0ed1e09b11 /app | |
| parent | 36e766bdc495ac4943e04bb507c82a97e3a92b57 (diff) | |
| download | Evernote-Rails-Example-bf83780f6ee7f44c40409048ea9f2ebc177d6681.tar.bz2 | |
Create HomeController
Will serve our index page.
Diffstat (limited to 'app')
| -rw-r--r-- | app/assets/javascripts/home.coffee | 3 | ||||
| -rw-r--r-- | app/assets/stylesheets/home.scss | 3 | ||||
| -rw-r--r-- | app/controllers/home_controller.rb | 2 | ||||
| -rw-r--r-- | app/helpers/home_helper.rb | 2 |
4 files changed, 10 insertions, 0 deletions
diff --git a/app/assets/javascripts/home.coffee b/app/assets/javascripts/home.coffee new file mode 100644 index 0000000..24f83d1 --- /dev/null +++ b/app/assets/javascripts/home.coffee @@ -0,0 +1,3 @@ +# Place all the behaviors and hooks related to the matching controller here. +# All this logic will automatically be available in application.js. +# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/app/assets/stylesheets/home.scss b/app/assets/stylesheets/home.scss new file mode 100644 index 0000000..f0ddc68 --- /dev/null +++ b/app/assets/stylesheets/home.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the home controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/app/controllers/home_controller.rb b/app/controllers/home_controller.rb new file mode 100644 index 0000000..fc0b474 --- /dev/null +++ b/app/controllers/home_controller.rb @@ -0,0 +1,2 @@ +class HomeController < ApplicationController +end diff --git a/app/helpers/home_helper.rb b/app/helpers/home_helper.rb new file mode 100644 index 0000000..23de56a --- /dev/null +++ b/app/helpers/home_helper.rb @@ -0,0 +1,2 @@ +module HomeHelper +end |
