Skip to content

Commit

Permalink
added default page
Browse files Browse the repository at this point in the history
  • Loading branch information
wleeperogs committed Jan 6, 2012
1 parent 01c5573 commit 766bb3a
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 241 deletions.
1 change: 1 addition & 0 deletions Gemfile
Expand Up @@ -7,6 +7,7 @@ gem 'rails', '3.2.0.rc2'

gem 'sqlite3'
gem 'devise'
gem 'haml'


# Gems used only for assets and not required
Expand Down
2 changes: 2 additions & 0 deletions Gemfile.lock
Expand Up @@ -45,6 +45,7 @@ GEM
erubis (2.7.0)
execjs (1.2.13)
multi_json (~> 1.0)
haml (3.1.4)
hike (1.2.1)
i18n (0.6.0)
journey (1.0.0.rc4)
Expand Down Expand Up @@ -113,6 +114,7 @@ PLATFORMS
DEPENDENCIES
coffee-rails (~> 3.2.0)
devise
haml
jquery-rails
rails (= 3.2.0.rc2)
sass-rails (~> 3.2.3)
Expand Down
3 changes: 3 additions & 0 deletions app/assets/javascripts/home.js.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://jashkenas.github.com/coffee-script/
3 changes: 3 additions & 0 deletions app/assets/stylesheets/home.css.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/
4 changes: 4 additions & 0 deletions app/controllers/home_controller.rb
@@ -0,0 +1,4 @@
class HomeController < ApplicationController
def index
end
end
2 changes: 2 additions & 0 deletions app/helpers/home_helper.rb
@@ -0,0 +1,2 @@
module HomeHelper
end
1 change: 1 addition & 0 deletions app/views/home/index.html.haml
@@ -0,0 +1 @@
%h1 Hello World
241 changes: 0 additions & 241 deletions public/index.html

This file was deleted.

7 changes: 7 additions & 0 deletions test/functional/home_controller_test.rb
@@ -0,0 +1,7 @@
require 'test_helper'

class HomeControllerTest < ActionController::TestCase
# test "the truth" do
# assert true
# end
end
4 changes: 4 additions & 0 deletions test/unit/helpers/home_helper_test.rb
@@ -0,0 +1,4 @@
require 'test_helper'

class HomeHelperTest < ActionView::TestCase
end

0 comments on commit 766bb3a

Please sign in to comment.