RubyUI (Former PhlexUI): Ruby Gem for RubyUI Components
31–40 of 40 posts
Re: RubyUI (Former PhlexUI): Ruby Gem for RubyUI Components
#32Re: RubyUI (Former PhlexUI): Ruby Gem for RubyUI Components
#33Re: RubyUI (Former PhlexUI): Ruby Gem for RubyUI Components
#34Re: RubyUI (Former PhlexUI): Ruby Gem for RubyUI Components
#35this looks dope. has anyone built anything substantial with phlex ?
Paired with Tailwind, this is the fastest application development I've ever done.
Re: RubyUI (Former PhlexUI): Ruby Gem for RubyUI Components
#36I used a rendering library like Phlex back in 2010. I hated it back then and I still don’t like it. They claim it’s faster than ERB but only show micro benchmarks. This is basically a form of lying. This approach stinks for a lot of reasons: - it adds a ton of pressure on the garbage collector. - the backtraces suck to debug. Ruby is better now than in 2010, but it’s still lame. - your templates are largely static. Y…
Re: RubyUI (Former PhlexUI): Ruby Gem for RubyUI Components
#37Just curious why the decision was made to go with PascalCase for the DSL? Is this meant to help React devs feel at home? Seems very un-Rubylike.
Re: RubyUI (Former PhlexUI): Ruby Gem for RubyUI Components
#38If I can't copy/paste HTML, not interested.
Re: RubyUI (Former PhlexUI): Ruby Gem for RubyUI Components
#39Just curious why the decision was made to go with PascalCase for the DSL? Is this meant to help React devs feel at home? Seems very un-Rubylike.
It’s because that’s how constants are named in Ruby. The method names match the constant names of the component classes.