instance method
concat
Ruby on Rails 4.0.13
Since v2.2.3Signature
concat(string)
The preferred method of outputting text in your views is to use the <%= “text” %> eRuby syntax. The regular puts and print methods do not operate as expected in an eRuby code block. If you absolutely must output text within a non-output code block (i.e., <% %>), you can use the concat method.
<%
concat "hello"
# is the equivalent of <%= "hello" %>
if logged_in
concat "Logged in!"
else
concat link_to('login', action: :login)
end
# will either display "Logged in!" or a login link
%>
Parameters
-
stringreq
Source
# File actionpack/lib/action_view/helpers/text_helper.rb, line 52
def concat(string)
output_buffer << string
end
Defined in actionpack/lib/action_view/helpers/text_helper.rb line 52
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionView::Helpers::TextHelper