Using angular.js often items like ng-click or ng-model are written directly in the html form element like so....
<input type="text" ng-model="name">
How would I do that with rails? As rails uses embedded ruby and generates the html....
<%= form_for(@user) do |f| %>
<%= f.label :name %>
<%= f.text_field :name %>
How would I add the ng-model to <%= f.text_field :name %> ?