Ruby / Rails Inside
@rubyinside
735
subscribers
15
photos
2.51K
links
Daily Ruby / Ruby on Rails articles. Curated channel.
Faker::Hacker.say_something_smart
Suggest link/news
https://t.me/NoMethodError
Download Telegram
Join
Ruby / Rails Inside
735 subscribers
Ruby / Rails Inside
https://www.johnnunemaker.com/rails-insert_all-and-upsert_all/
John Nunemaker
Rails insert_all and upsert_all
TIL something new about Rails. You can now use insert_all and upsert_all for efficient writes. But that's not all. Read on for what "just worked" and what didn't.
Ruby / Rails Inside
https://batsov.com/articles/2020/12/16/inspecting-the-contents-of-a-ruby-gem/
Ruby / Rails Inside
https://www.youtube.com/watch?v=2fldr2HcuVw
YouTube
RubyWorld Conference 2020 English Channel
Correction and Apology
We posted the incorrect logo and English description of Platinum sponsor ‘LegalForce, Inc.’. We sincerely apologize and upload the revised PR video. Here (https://youtu.be/CC1ifL_eZK4) is the correct description. We are terribly sorry.…
Ruby / Rails Inside
https://weblog.rubyonrails.org/2020/12/20/this-week-in-rails-rails-6-1-benchmark-anywhere-bugfixes-and-more/
Riding Rails
This week in Rails: benchmark anywhere, bugfixes and more!
Hi there, it is Greg, bringing you the latest news about Rails!
Ruby / Rails Inside
https://www.ruby-lang.org/en/news/2020/12/20/ruby-3-0-0-rc1-released/
Ruby / Rails Inside
https://karolgalanciak.com/blog/2020/12/20/kafka-for-rubyists-mini-course/
Karolgalanciak
Kafka for Rubyists Mini Course
I’ve been recently planning to record a couple of tutorials for my team in BookingSync, focusing mostly on monitoring and some other more advanced aspects of...
Ruby / Rails Inside
https://hotwire.dev/
Ruby / Rails Inside
https://www.ruby-lang.org/en/news/2020/12/25/ruby-3-0-0-released/
Ruby / Rails Inside
https://blog.eq8.eu/til/google-maps-with-stimulus-js.html
blog.eq8.eu
Embed Google Maps JS with Stimulus JS
```js // app/javascript/controllers/map_controller.js export default class extends Controller { static targets = [ ‘map’ ]
Ruby / Rails Inside
https://gorails.com/episodes/devise-hotwire-turbo
Gorails
How to use Devise with Hotwire & Turbo.js | GoRails
Hotwire's Turbo library intercepts forms automatically so Devise needs a few tweaks to work with it. Learn how to do that in this screencast!
Ruby / Rails Inside
https://andymaleh.blogspot.com/2020/12/how-to-use-ruby-case-statements-with.html
Blogspot
How to Use Ruby Case Statements with === / Higher Order Lambdas / Pattern Matching
code master glimmer swt ruby jruby java ood oop desktop web gui
Ruby / Rails Inside
https://www.boringgenerators.com/blog/2021-01-02-configure-circleci/
Boringgenerators
Setup CircleCI 2.0 with Rails
Boring generators aims to make your development faster by delegating boring setups to us.
Ruby / Rails Inside
https://thoughtbot.com/blog/on-revisiting-old-code
thoughtbot
KISSing It: On Revisiting Old Code
One of the many things that’s cringeworthy but worth it.
Ruby / Rails Inside
https://jvns.ca/blog/2021/01/04/docker-compose-is-nice/
Julia Evans
Docker Compose: a nice way to set up a dev environment
Ruby / Rails Inside
https://longliveruby.com/articles/rails-request-cycle
Ruby / Rails Inside
https://kirshatrov.com/2021/01/06/ruby-concurrency-and-ecosystem/
Kir Shatrov
Ruby 3, concurrency and the ecosystem
With the Ruby 3.0 release, there’s been a lot of chatter about concurrency, parallelism, and async IO.
Ruby / Rails Inside
https://blog.saeloun.com/2021/01/08/rails-6-1-pre-database-connection-switching.html
Saeloun Blog
Rails 6.1 adds support for role switching and sharding in database
Rails 6.1 has added support for switching connections for one database instead of all databases
Ruby / Rails Inside
https://blog.saeloun.com/2021/01/08/rails-6-check-constraints-database-migrations.html
Saeloun Blog
Rails 6.1 adds support for check constraints to database migrations
With Rails adding support for check constraints to database migrations, check constraints can easily now be added and removed from tables with simple migration DSL. Earlier, the only way to add check constraints to tables was through raw SQL queries.
Ruby / Rails Inside
https://github.com/Yegorov/awesome-ruby-blogs
GitHub
GitHub - Yegorov/awesome-ruby-blogs: A curated list of Awesome Ruby Blogs and Newsletters for Ruby Developers and Newbies
A curated list of Awesome Ruby Blogs and Newsletters for Ruby Developers and Newbies - Yegorov/awesome-ruby-blogs
Ruby / Rails Inside
https://www.icelab.com.au/notes/effective-ruby-dependency-injection-at-scale
www.icelab.com.au
Notes / Effective Ruby dependency injection at scale
An approach to dependency injection that will work across your entire app.
Ruby / Rails Inside
https://www.rubypigeon.com/posts/dependency_injection_containers_vs_hardcoded_constants/
Rubypigeon
Dependency Injection Containers vs Hard-coded Constants
Dependency injection (DI) is a somewhat contentious topic in the Ruby community.Some argue that DI containers are unnecessary complexity cargo-culted from Ja...