diff --git a/app/assets/javascripts/microposts.js.coffee b/app/assets/javascripts/microposts.js.coffee new file mode 100644 index 0000000..7615679 --- /dev/null +++ b/app/assets/javascripts/microposts.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/ diff --git a/app/assets/stylesheets/microposts.css.scss b/app/assets/stylesheets/microposts.css.scss new file mode 100644 index 0000000..c14d62c --- /dev/null +++ b/app/assets/stylesheets/microposts.css.scss @@ -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/ diff --git a/app/controllers/microposts_controller.rb b/app/controllers/microposts_controller.rb new file mode 100644 index 0000000..6ed1cd4 --- /dev/null +++ b/app/controllers/microposts_controller.rb @@ -0,0 +1,83 @@ +class MicropostsController < ApplicationController + # GET /microposts + # GET /microposts.json + def index + @microposts = Micropost.all + + respond_to do |format| + format.html # index.html.erb + format.json { render json: @microposts } + end + end + + # GET /microposts/1 + # GET /microposts/1.json + def show + @micropost = Micropost.find(params[:id]) + + respond_to do |format| + format.html # show.html.erb + format.json { render json: @micropost } + end + end + + # GET /microposts/new + # GET /microposts/new.json + def new + @micropost = Micropost.new + + respond_to do |format| + format.html # new.html.erb + format.json { render json: @micropost } + end + end + + # GET /microposts/1/edit + def edit + @micropost = Micropost.find(params[:id]) + end + + # POST /microposts + # POST /microposts.json + def create + @micropost = Micropost.new(params[:micropost]) + + respond_to do |format| + if @micropost.save + format.html { redirect_to @micropost, notice: 'Micropost was successfully created.' } + format.json { render json: @micropost, status: :created, location: @micropost } + else + format.html { render action: "new" } + format.json { render json: @micropost.errors, status: :unprocessable_entity } + end + end + end + + # PUT /microposts/1 + # PUT /microposts/1.json + def update + @micropost = Micropost.find(params[:id]) + + respond_to do |format| + if @micropost.update_attributes(params[:micropost]) + format.html { redirect_to @micropost, notice: 'Micropost was successfully updated.' } + format.json { head :no_content } + else + format.html { render action: "edit" } + format.json { render json: @micropost.errors, status: :unprocessable_entity } + end + end + end + + # DELETE /microposts/1 + # DELETE /microposts/1.json + def destroy + @micropost = Micropost.find(params[:id]) + @micropost.destroy + + respond_to do |format| + format.html { redirect_to microposts_url } + format.json { head :no_content } + end + end +end diff --git a/app/helpers/microposts_helper.rb b/app/helpers/microposts_helper.rb new file mode 100644 index 0000000..f08aad2 --- /dev/null +++ b/app/helpers/microposts_helper.rb @@ -0,0 +1,2 @@ +module MicropostsHelper +end diff --git a/app/models/micropost.rb b/app/models/micropost.rb new file mode 100644 index 0000000..0178e70 --- /dev/null +++ b/app/models/micropost.rb @@ -0,0 +1,3 @@ +class Micropost < ActiveRecord::Base + attr_accessible :content, :user_id +end diff --git a/app/views/microposts/_form.html.erb b/app/views/microposts/_form.html.erb new file mode 100644 index 0000000..4260441 --- /dev/null +++ b/app/views/microposts/_form.html.erb @@ -0,0 +1,25 @@ +<%= form_for(@micropost) do |f| %> + <% if @micropost.errors.any? %> +
+

<%= pluralize(@micropost.errors.count, "error") %> prohibited this micropost from being saved:

+ + +
+ <% end %> + +
+ <%= f.label :content %>
+ <%= f.text_field :content %> +
+
+ <%= f.label :user_id %>
+ <%= f.number_field :user_id %> +
+
+ <%= f.submit %> +
+<% end %> diff --git a/app/views/microposts/edit.html.erb b/app/views/microposts/edit.html.erb new file mode 100644 index 0000000..30f1480 --- /dev/null +++ b/app/views/microposts/edit.html.erb @@ -0,0 +1,6 @@ +

Editing micropost

+ +<%= render 'form' %> + +<%= link_to 'Show', @micropost %> | +<%= link_to 'Back', microposts_path %> diff --git a/app/views/microposts/index.html.erb b/app/views/microposts/index.html.erb new file mode 100644 index 0000000..e73014c --- /dev/null +++ b/app/views/microposts/index.html.erb @@ -0,0 +1,25 @@ +

Listing microposts

+ + + + + + + + + + +<% @microposts.each do |micropost| %> + + + + + + + +<% end %> +
ContentUser
<%= micropost.content %><%= micropost.user_id %><%= link_to 'Show', micropost %><%= link_to 'Edit', edit_micropost_path(micropost) %><%= link_to 'Destroy', micropost, method: :delete, data: { confirm: 'Are you sure?' } %>
+ +
+ +<%= link_to 'New Micropost', new_micropost_path %> diff --git a/app/views/microposts/new.html.erb b/app/views/microposts/new.html.erb new file mode 100644 index 0000000..b0ef41f --- /dev/null +++ b/app/views/microposts/new.html.erb @@ -0,0 +1,5 @@ +

New micropost

+ +<%= render 'form' %> + +<%= link_to 'Back', microposts_path %> diff --git a/app/views/microposts/show.html.erb b/app/views/microposts/show.html.erb new file mode 100644 index 0000000..e15f8ee --- /dev/null +++ b/app/views/microposts/show.html.erb @@ -0,0 +1,15 @@ +

<%= notice %>

+ +

+ Content: + <%= @micropost.content %> +

+ +

+ User: + <%= @micropost.user_id %> +

+ + +<%= link_to 'Edit', edit_micropost_path(@micropost) %> | +<%= link_to 'Back', microposts_path %> diff --git a/config/routes.rb b/config/routes.rb index ea4a195..c023975 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,4 +1,6 @@ DemoApp::Application.routes.draw do + resources :microposts + resources :users # The priority is based upon order of creation: diff --git a/db/migrate/20121007103131_create_microposts.rb b/db/migrate/20121007103131_create_microposts.rb new file mode 100644 index 0000000..1ea9615 --- /dev/null +++ b/db/migrate/20121007103131_create_microposts.rb @@ -0,0 +1,10 @@ +class CreateMicroposts < ActiveRecord::Migration + def change + create_table :microposts do |t| + t.string :content + t.integer :user_id + + t.timestamps + end + end +end diff --git a/test/fixtures/microposts.yml b/test/fixtures/microposts.yml new file mode 100644 index 0000000..0965034 --- /dev/null +++ b/test/fixtures/microposts.yml @@ -0,0 +1,9 @@ +# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html + +one: + content: MyString + user_id: 1 + +two: + content: MyString + user_id: 1 diff --git a/test/functional/microposts_controller_test.rb b/test/functional/microposts_controller_test.rb new file mode 100644 index 0000000..55ab5bc --- /dev/null +++ b/test/functional/microposts_controller_test.rb @@ -0,0 +1,49 @@ +require 'test_helper' + +class MicropostsControllerTest < ActionController::TestCase + setup do + @micropost = microposts(:one) + end + + test "should get index" do + get :index + assert_response :success + assert_not_nil assigns(:microposts) + end + + test "should get new" do + get :new + assert_response :success + end + + test "should create micropost" do + assert_difference('Micropost.count') do + post :create, micropost: { content: @micropost.content, user_id: @micropost.user_id } + end + + assert_redirected_to micropost_path(assigns(:micropost)) + end + + test "should show micropost" do + get :show, id: @micropost + assert_response :success + end + + test "should get edit" do + get :edit, id: @micropost + assert_response :success + end + + test "should update micropost" do + put :update, id: @micropost, micropost: { content: @micropost.content, user_id: @micropost.user_id } + assert_redirected_to micropost_path(assigns(:micropost)) + end + + test "should destroy micropost" do + assert_difference('Micropost.count', -1) do + delete :destroy, id: @micropost + end + + assert_redirected_to microposts_path + end +end diff --git a/test/unit/helpers/microposts_helper_test.rb b/test/unit/helpers/microposts_helper_test.rb new file mode 100644 index 0000000..cff90b5 --- /dev/null +++ b/test/unit/helpers/microposts_helper_test.rb @@ -0,0 +1,4 @@ +require 'test_helper' + +class MicropostsHelperTest < ActionView::TestCase +end diff --git a/test/unit/micropost_test.rb b/test/unit/micropost_test.rb new file mode 100644 index 0000000..def8e93 --- /dev/null +++ b/test/unit/micropost_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class MicropostTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end