Skip to content

Commit

Permalink
setup home for dummy app
Browse files Browse the repository at this point in the history
  • Loading branch information
jackdempsey committed May 30, 2012
1 parent cfcbdb4 commit b561878
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
5 changes: 5 additions & 0 deletions spec/dummy/app/controllers/home_controller.rb
@@ -0,0 +1,5 @@
class HomeController < ApplicationController
def index

end
end
7 changes: 7 additions & 0 deletions spec/dummy/app/views/home/index.html.haml
@@ -0,0 +1,7 @@
%h1
Welcome to the Dummy App for Lists Engine

.actions
%ul
%li
= link_to 'View Lists', lists_path
1 change: 1 addition & 0 deletions spec/dummy/config/routes.rb
@@ -1,4 +1,5 @@
Rails.application.routes.draw do

mount Lists::Engine => "/lists"
root to: 'home#index'
end

0 comments on commit b561878

Please sign in to comment.