8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2c28506
Ruby 3+ and Rails 7+ are required
Changed inline templates interface:
# BEFORE: def method_with_a_template a = "foo" erb # <div><%= a %></div> end # AFTER: def method_with_a_template a = "foo" erb(a:) { "<div><%= a %></div>" } end