Created
March 8, 2012 18:07
-
-
Save jraczak/2002406 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SyntaxError in Projects#show | |
Showing /Volumes/UserData/Users/jraczak/Desktop/nexus/app/views/requirements/new.html.erb where line #12 raised: | |
compile error | |
/Volumes/UserData/Users/jraczak/Desktop/nexus/app/views/requirements/new.html.erb:12: syntax error, unexpected ')', expecting kDO_COND or ':' or '\n' or ';' | |
...type in Requirement_Type.all );@output_buffer.safe_concat(' | |
^ | |
/Volumes/UserData/Users/jraczak/Desktop/nexus/app/views/requirements/new.html.erb:15: syntax error, unexpected kEND, expecting ')' | |
'); end | |
^ | |
/Volumes/UserData/Users/jraczak/Desktop/nexus/app/views/requirements/new.html.erb:35: syntax error, unexpected kENSURE, expecting ')' | |
/Volumes/UserData/Users/jraczak/Desktop/nexus/app/views/requirements/new.html.erb:37: syntax error, unexpected kEND, expecting ')' | |
Extracted source (around line #12): | |
9: </div> | |
10: <div class="field"> | |
11: <%= f.label "Requirement Type:" %></br> | |
12: <%= for requirement_type in Requirement_Type.all %> | |
13: <%= radio_button_tag "project[requirement_type_ids][]", requirement_type.id, @project.requirement_type_ids.include?(requirement_type.id), :id => dom_id(requirement_type) %> | |
14: <%= label_tag dom_id(requirement_type), requirement_type.name, :class => "radio_button_label" %> | |
15: <% end %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment