Skip to content

Instantly share code, notes, and snippets.

@kronos
Created July 22, 2010 11:23
Show Gist options
  • Select an option

  • Save kronos/485852 to your computer and use it in GitHub Desktop.

Select an option

Save kronos/485852 to your computer and use it in GitHub Desktop.
<%= form_for @script do |f| %>
123
<%= f.fields_for :user_agents do |ff| %>
<%= raise 'x' %>
<% end %>
<% end %>
@pauldruziak
Copy link

<%- form_for @script do |f| %>
  123
  <%- f.fields_for :user_agents do |ff| %>
    <%= raise 'x' %>
  <% end %>
<% end %>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment