Skip to content

Commit

Permalink
New controller 'store' generated. added.
Browse files Browse the repository at this point in the history
  • Loading branch information
kyanny committed Jan 20, 2010
1 parent 2b0fef5 commit d0225dc
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 0 deletions.
5 changes: 5 additions & 0 deletions depot/app/controllers/store_controller.rb
@@ -0,0 +1,5 @@
class StoreController < ApplicationController
def index
end

end
2 changes: 2 additions & 0 deletions depot/app/helpers/store_helper.rb
@@ -0,0 +1,2 @@
module StoreHelper
end
2 changes: 2 additions & 0 deletions depot/app/views/store/index.html.erb
@@ -0,0 +1,2 @@
<h1>Store#index</h1>
<p>Find me in app/views/store/index.html.erb</p>
8 changes: 8 additions & 0 deletions depot/test/functional/store_controller_test.rb
@@ -0,0 +1,8 @@
require 'test_helper'

class StoreControllerTest < ActionController::TestCase
# Replace this with your real tests.
test "the truth" do
assert true
end
end

0 comments on commit d0225dc

Please sign in to comment.