Skip to content

Commit

Permalink
create microposts controller
Browse files Browse the repository at this point in the history
  • Loading branch information
scarvill91 committed Mar 29, 2015
1 parent 07b9d14 commit a64d24c
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app/assets/javascripts/microposts.coffee
Original file line number Diff line number Diff line change
@@ -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/
3 changes: 3 additions & 0 deletions app/assets/stylesheets/microposts.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
// Place all the styles related to the Microposts controller here.
// They will automatically be included in application.css.
// You can use Sass (SCSS) here: http://sass-lang.com/
2 changes: 2 additions & 0 deletions app/controllers/microposts_controller.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
class MicropostsController < ApplicationController
end
2 changes: 2 additions & 0 deletions app/helpers/microposts_helper.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
module MicropostsHelper
end
7 changes: 7 additions & 0 deletions test/controllers/microposts_controller_test.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
require 'test_helper'

class MicropostsControllerTest < ActionController::TestCase
# test "the truth" do
# assert true
# end
end

0 comments on commit a64d24c

Please sign in to comment.