Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Intro to Rails

Intro to Rails

Lightning talk on Ruby on Rails for the first Hacktivate hackathon on 12 April 2013. Slides compiled and talk given with an hour notice!

Addam Hardy

June 08, 2013
Tweet

More Decks by Addam Hardy

Other Decks in Technology

Transcript

  1. class PostController < ApplicationController def index @posts = Post.all respond_to

    do |format| format.html format.json { render json: @posts } end end end
  2. MVC