RubyFlow The Ruby and Rails community linklog

×

The Ruby and Rails community linklog

Made a library? Written a blog post? Found a useful tutorial? Share it with the Ruby community here or just enjoy what everyone else has found!

Submit a post

You can use basic HTML markup (e.g. <a>) or Markdown.
Note that your post may be edited to suit the format of the site.

As you are not logged in, you will be
directed via GitHub to signup or sign in

Post Preview

Note: Only the first pargraph is shown on the front page and overly long paragraphs may be broken up.

fake_io 0.1.0 released

fake_io 0.1.0 has been released. FakeIO is a module that can be included into any Class in order to create IO-like objects. FakeIO emulates buffered IO, while delegating the raw reads/writes to the io_read/io_write methods. FakeIO can be used to create IO-like wrapper objects around non-IO network data sources (ex: RPC, WebSockets, etc). FakeIO supports all Ruby 2.x and 3.x IO methods.

Automatic RubyGems Multi-Factor Authentication with Gemsmith

Hey all. πŸ‘‹ Gemsmith 16.0.0 has been released and also completely rewritten on top of Rubysmith which brings a lot of modern convenience to building and maintaining your Ruby gems. Included in this release is the ability to automatically authenticate to RubyGems using Multi-Factor Authentication as long as your YubiKey is plugged into your machine. The linked article will walk you through how all of this works and how you leverage this functionality to speed up your own development workflow. πŸš€

The Builder Pattern (video)

The Builder pattern allows you to hide the configuration of complex objects in a separate class. It makes sense to use it when you feel like the creation of an object has become too complex, and you’re repeating the process in a few different places. Or, when you need to create an object with different possible configuration options. [more inside]

Loading older posts