If you're creating a reasonably complex Thor CLI, you'll likely want to reuse common method options. Here's a simple way to do that.
If you're creating a reasonably complex Thor CLI, you'll likely want to reuse common method options. Here's a simple way to do that.
There are some basic stats on https://rubygems.org/stats.
Is there any website that gives more detailed stats for gem downloads, such as downloads per year or per gem? Maybe with some nice graphs?
Couldn't find anything, please RT for reach
Nobody uses Ruby on Rails anymore? The data suggests otherwise
Crunching some data from https://rubygems.org gives you Rails gem downloads per year. Doesn't look like it's going down to me.
TIL: You can speed up your migrations by using bulk migrations. Make things just a tiny bit more efficient by saving some operations
PagerDuty is hiring Senior Security Engineer 3, Product & Application Security
#golang #java #python #ruby #rubyonrails #aws #azure #cicd #kubernetes #terraform #securityengineer #seniorengineer
Remote; United States
Full-time
PagerDuty
Job details https://jobsfordevelopers.com/jobs/senior-security-engineer-3-product-application-security-at-pagerduty-com-mar-18-2025-5eabee?utm_source=mastodon.world&utm_medium=social&utm_campaign=posting
#jobalert #jobsearch #hiring
How to Host Your Own #Mastodon Server on a #VPS (5 Minute Quick-Start Guide)
This article provides a guide for how to host your own Mastodon server on a VPS.
Running your own Mastodon server on a VPS is an excellent way to enjoy an efficient and secure Mastodon experience.
What is Mastodon?
Mastodon is a #decentralized social media platform that enables users to post ...
Continued https://blog.radwebhosting.com/how-to-host-your-own-mastodon-server-on-a-vps/?utm_source=mastodon&utm_medium=social&utm_campaign=ReviveOldPost #installguide #selfhosting #rubyonrails #selfhosted #rubygems #activitypub
I'm introducing myself to Ruby and Ruby on Rails. Ruby has some really cool features that make the language elegant and expressive, offering different ways to simplify code. Here example with arrays!
TIL: You can bring pattern matching to your custom models really quickly. All you need to do is to implement deconstruct_keys, and you're good to go
EN: Big highlight to Shopify, PLATINUM Sponsor!
Thank you for making this event happen!
PT-BR:Grande destaque para a Shopify, patrocinadora PLATINUM!
Um agradecimento por tornar esse evento possível!
Every Rails app has a breaking point. Do you know yours? Learn how to load test your Rails application with Apache JMeter.
https://www.honeybadger.io/blog/rails-load-testing-jmeter/?utm_source=mastodon&utm_medium=social
You know what's cool?
@russolsen just announced that he and @baweaver will do a second edition of Eloquent Ruby at @pragprog.
It's nice to see that the @ruby community gained so much traction again recently.
TIL: You can use emoji routes in Rails. I don't know why you would, but you could. In theory. You know, for science?
GOAT is hiring Senior Software Engineer I
#golang #ruby #react #rubyonrails #node #grpc #postgresql #seniorengineer
Remote; United States
Full-time
GOAT
Job details https://jobsfordevelopers.com/jobs/senior-software-engineer-i-at-goat-com-mar-5-2025-96952e?utm_source=mastodon.world&utm_medium=social&utm_campaign=posting
#jobalert #jobsearch #hiring
TIL: You can pass modifies to generators using curly braces. For example, create a decimal column with precision and scale
Earlier this month I went to a Rails Supper Club.
I don’t really do networking events, or meetups, but this was very good.
Wee writeup here: https://tosbourn.com/belfast-rails-supper-club/
Here's a throwback! Learn all about UUIDs in this classic article by Starr Horne.
https://www.honeybadger.io/blog/uuids-and-ulids/?utm_source=mastodon&utm_medium=social
Smart Pension Ltd is hiring Ruby Software Engineer
#ruby #rubyonrails #mysql #postgresql
Kraków, Poland
Full-time
Smart Pension Ltd
Job details https://jobsfordevelopers.com/jobs/ruby-software-engineer-at-smart-co-jul-24-2024-4c9cf3?utm_source=mastodon.world&utm_medium=social&utm_campaign=posting
#jobalert #jobsearch #hiring
I have no patience for dealing with the #RubyOnRails core team, but if •you• do, then…
It would be super if it were possible to append values to the #ContentSecurityPolicy configuration. For example:
```ruby
Rails.application.configure do
config.content_security_policy do |policy|
policy.script_src :self, :https
if Rails.env.development?
policy.script_src << :unsafe_inline
end
end
end
```
Template initializer source: https://github.com/rails/rails/blob/main/railties/lib/rails/generators/rails/app/templates/config/initializers/content_security_policy.rb.tt
In a #RubyOnRails app, how would you handle a model attribute that’s nil by default and can be updated once and only once (from nil to some value) after the record is persisted?
attr_readonly is similar-but-different and I can’t find a common pattern for handling a case like this.
Enhancing User Engagement with AnyCable and Hotwire: A Deep Dive into Presence Tracking
In the digital age, knowing who is online can significantly enhance user experience. This article explores how to implement presence tracking in Hotwire applications using AnyCable, allowing developer...