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

Ruby on Rails – A Primer

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?

Oliver Legg

July 29, 2013
Tweet

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