Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

removes <%= if ruby expression is not on a same line #331

Open
skatkov opened this issue Sep 26, 2023 · 1 comment
Open

removes <%= if ruby expression is not on a same line #331

skatkov opened this issue Sep 26, 2023 · 1 comment

Comments

@skatkov
Copy link

skatkov commented Sep 26, 2023

Good day,

Thanks for a great gem. I've ran into what seems to be a questionable behavior that might be not safe to autocorrect.

We have a following code snippet:

<div>
  <%=
                form.select :group_key, (Array.wrap(@gift_card_offer.group_key) + Rewards::Retailer.pluck(:group_key).uniq).sort,
                {include_blank: true, selected: @gift_card_offer.group_key},
                {"data-admin--groupkey-target": "output"}
            %>
</div>

That turned into

<div>
   form.select :group_key, (Array.wrap(@gift_card_offer.group_key) + Rewards::Retailer.pluck(:group_key).uniq).sort,
                {include_blank: true, selected: @gift_card_offer.group_key},
                {"data-admin--groupkey-target": "output"}
            %>
</div>

as you can see <%= was removed. this is not an issue, if <%= and reuby expression is on same line. But doing such "autocorrection" doesn't seem safe to me?

@kanejamison
Copy link

kanejamison commented Jul 8, 2024

I'm seeing this same behavior across many files in our app.

A couple of generalized examples where the leading tag gets removed:

<%
options ||= {}
html_options ||= {}
html_options[:id] ||= id_for(form, method)
html_options[:class] = "form-control select2 #{html_options[:class]}".strip
other_options ||= {}
%>
<%
          project = FactoryBot.build(:project, id: 1, team: team, name: "Project A", created_at: 1.year.ago)
          %>
          <pre><code><%= pretty_parse(render(template: "api/projects/show", formats: [:json], locals: { project: project })) %>

Seems to happen in all of our files where <% is followed by a line break, with or without linespace after <%, and with or without line space on the beginning of the next line.

For anyone else dealing with this I was able to do a bulk find/replace on <% with the line break and then replace it with a space, and then review the occurrences manually, and all worked afterwards.
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants