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

Ruby on Rails – A Primer

Sponsored · Ship Features Fearlessly Turn features on and off without deploys. Used by thousands of Ruby developers.

Ruby on Rails – A Primer

What is Ruby on Rails? When is it the right tool for the job? What powerful features can you use in all of your web applications?

Avatar for Oliver Legg

Oliver Legg

July 29, 2013

More Decks by Oliver Legg

Other Decks in Programming

Transcript

  1. <%= form_for(@post) do |f| %> <%= f.label :title %> <%=

    f.text_field :title %> <%= f.label :body %> <%= f.text_area :body %> <%= f.submit %> <% end %>
  2. <%= simple_form_for(@post) do |f| %> <%= f.input :title %> <%=

    f.input :body %> <%= f.button :submit %> <% end %> simple_form https://github.com/plataformatec/simple_form