Earlier quoted context omitted.
I take it you’ve never tried to install nokogiri?
I think this joke is five or six years out of date (maybe more?). Nokogiri has been a breeze to install for a long time now.
An Overview Of Upcoming Ruby on Rails 7.1 Features Part 1
71–80 of 132 posts
Re: An Overview Of Upcoming Ruby on Rails 7.1 Features Part 1
#72I was a devoted rails fan 10 years ago, but haven't looked back since full stack typescript. What's the general vibe on RoR nowadays?
Still using it, still highly productive. Not doing as much Rails work as I was 10 years ago but that's due to a change in the nature of my business. We still use it and Sinatra for the bulk of our Internet-facing and internal stuff.
Re: An Overview Of Upcoming Ruby on Rails 7.1 Features Part 1
#73I was a devoted rails fan 10 years ago, but haven't looked back since full stack typescript. What's the general vibe on RoR nowadays?
Rails is unfortunately much slower, and it’s quite coupled to the concepts of server-side rendering and OOP MVC. Making Rails work with a modern frontend feels pretty hacky compared to using a full-stack TypeScript framework.
Re: An Overview Of Upcoming Ruby on Rails 7.1 Features Part 1
#74Earlier quoted context omitted.
Shopify and Github being run on Rails sorta put it to bed a long time ago.
Yes but we should not look at unicorns to settle this argument. After all not every company has the size of a unicorn, the world is not big enough for that. Very few companies get to the point that any random technology won't do. I've seen dozens of Rails projects going in production and many are still there. Same thing for any other programming language I guess. For normal sized companies Rails is OK. What matters i…
Re: An Overview Of Upcoming Ruby on Rails 7.1 Features Part 1
#75Earlier quoted context omitted.
If Hey has shown me anything, it is that Hotwire IMO is a complete gimmick. The frontend of Hey had so many issues for me. I used used hey from release until about a month or two ago, and it was the terrible UXUI experience that pushed me to cancel. Weird loading issues, things would update after performing actions, not loading in place correctly etc.
If you think Hey’s UI is bad, you should try Basecamp
Re: An Overview Of Upcoming Ruby on Rails 7.1 Features Part 1
#761. Rails retired Webpacker [that] compiled and bundled JS. Import maps, Turbo and Stimulus [are now the] default options, replacing Webpacker, Turbolinks and UJS . How do these new tools compare with the old? Versus Webpack, Vite etc?
Re: An Overview Of Upcoming Ruby on Rails 7.1 Features Part 1
#77I was a devoted rails fan 10 years ago, but haven't looked back since full stack typescript. What's the general vibe on RoR nowadays?
I’ve never seen a more productive stack. Enables me to build complete apps as a single dev - which would take 2x-5x of the time and effort if using separate front end apps. Ruby makes me happy when I use it. Hotwire and Stimulus let me create front end interactions without a separate SPA. The ecosystem is mature and well maintained. Absolutely love it.
Re: An Overview Of Upcoming Ruby on Rails 7.1 Features Part 1
#78Great to see so many new features in Rails. Tbh, one of the reasons I use it for certain backend projects is how simple to do complex things. Managing files and image variants is a pain when developing a site. Rails make it easy and even adds more features around. However, I still think the UI layer is too coupled to the backend. Webpacker was a try, but I understand why it's deprecated. I would go on supporting comm…
Re: An Overview Of Upcoming Ruby on Rails 7.1 Features Part 1
#79> Later in the year, Rails retired Webpacker Is Rails anti Typescript? It’s weird to see most other JS environments move to Typescript by default, while Rails now now ignores the ability to use it without jumping through hoops.
You can use Rails with React/Vue + TypeScript pretty easily by using something like rails-esbuild or vite_ruby.
I'm currently working on a project with Rails, React, TypeScript, Vite, and InertiaJS and have been very much enjoying it, especially now that Inertia supports SSR.
Re: An Overview Of Upcoming Ruby on Rails 7.1 Features Part 1
#80I was a devoted rails fan 10 years ago, but haven't looked back since full stack typescript. What's the general vibe on RoR nowadays?
> What's the general vibe on RoR nowadays? Most people that use it are fine and productive. Because of lazy evaluation, type issues persist though. Plenty of instances of trying to call string methods on integers, and array methods on nil, and Rails devs in denial that that's a big problem as the app continues to grow.