rbexy
rbexy copied to clipboard
A Ruby template language and component framework inspired by JSX and React
Hello! First of all, thanks so much for building this project. I've always wanted to have this kind of template in Ruby/Rails, and it's amazing to see this library implementing...
Bumps [rdoc](https://github.com/ruby/rdoc) from 6.6.2 to 6.6.3.1. Commits ffbf8ae Bump up 6.6.3.1 e4a0e71 Fix NoMethodError for start_with d98baf4 Bump up 6.6.3 da7a0c7 Filter marshaled objets See full diff in compare view...
In my main work project, we've developed an `ApplicationComponent` base class that has a handful of features on top of `Rbexy::Component`. They're more opinionated and provide more of a framework,...
| It breaks everything, primarily due to ActionView::Helpers::TagHelper::TagBuilder::HTML_VOID_ELEMENTS no longer being a thing at all. We should probably grab the most recent `HTML_VOID_ELEMENTS` from Rails before it was removed and...
``` This has a "quote" in it ``` Ends up rendering like: ``` This has a \"quote\" in it ```
This works: ``` hello ``` This errors: ``` {@things.map { |thing| hello}} ```
Tags within lambda expressions must be separated by a space from the curly braces in order to function. Works: ```ruby { ->(props) { Tag }} ``` Doesn't work: ```ruby {...