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.

Content Security Policy (Ruby on Rails)

Recently, we made changes to our codebase in regards to Content Security Policy (CSP). This article starts with a minuscule intro to CSP, then talks about why we decided to change our approach, what we changed, some unintended consequences and how we fixed things; it then ends with some observations and learnings. [more inside]

Configuration-driven state machines

Many projects need a state machine to control workflows, You can read all sorts of computer science articles on what a state machine is, but the essence is that a particular object can exist in a certain number of states only, and events will cause a transition from one state to another. [more inside]

Why the CSV library is broken (Part V) - Do You Want French Quotes with that Comma?

Hello, I’ve written a new (and fifth) episode on why the CSV standard library is broken (and how to fix it). Let’s have a look at quotes and leading and trailing spaces: Escaping the Stray Quote Error Hell - Do You Want Single, Double, or French Quotes With That Comma? Questions and comments welcome. Cheers. Prost. PS: If you want to see other (more) CSV formats / dialects pre-configured and supported “out-of-the-box” in the new csv reader, please tell.

csvreader v1.1.0 - adds records with fixed width fields (fwf) and no separator :-)

Hello, I’ve added the CSV with meta data (front matter) block in YAML (CSVY) format and the “classic” fortran-style fixed width fields (FWF) with no separator in the latest csvreader library / gem update. Use: Csv.fixed.parse( ..., width: [8,8,32,14] ), for example, for the new flavor or Csv.meta to get the (optional) meta data block in the CSV v1.0 “The Right Way” format / flavor. Happy data wrangling with ruby. Cheers. Prost. PS: If you want to see other CSV flavors / dialects / formats / variants included, please tell.

Meet Yabeda: Modular framework for instrumenting Ruby applications

Introducing Yabeda (Russian for “tattletale”)—a family of gems based on the extendable framework that makes collecting metrics from Ruby applications and exporting them to datastores such as Prometheus easier than ever before. Rails, Sidekiq, and Prometheus are supported out of the box, more integrations are coming, hopefully with the help from the community.

5 for the name :D

New AppPerf Feature - Latency Bands

Hey everyone. Just wanted to share an update that I made to AppPerf (open source application performance monitoring tool). I added a new feature call Latency Bands that tries to combine histograms counts of latencies and percentiles of latencies into a single graph to help identify issues more quickly. You can read about it here: [more inside]

tty-config v0.3.0

The latest release of tty-config adds support for binding settings to environment variables, adding a custom setting aliases, reading and writing INI type files formats which are often used for holding environment configuration variables. Enjoy!

That looks fantastic. Wondering why the tty in the name? It looks like a fantas…

How to Speed up Your Tests without Touching the Code

I wanted to share an interesting discovery. If you’re using Capybara then you might be able to speed up your tests considerably (5 times in my case) by moving the database to tmpfs. I wrote an article showing how: https://www.gregnavis.com/articles/how-to-tune-your-database-to-make-tests-faster.html . The same technique should work in other frameworks (and languages) as long as you don’t wrap test cases in transactions to clean up after them.

JFYI: last dot in the article URL makes 404
@ARK SHRAIER: It is already fixed :)
Loading older posts