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
Post Preview
Note: Only the first pargraph is shown on the front page and overly long paragraphs may be broken up.
Prevent information leaking in Rails
I just wrote a short article about how to prevent information leaking in Rails, by turning off HTTP caching for authenticated pages: Prevent information leaking in Rails
Rails_DB major updates [ Please Upgrade ]
Please try, you’ll like it: https://github.com/igorkasyanchuk/rails_db has a major updates, such as: [more inside]
Cool Ruby Regex Tricks
Ruby supports using regex in lots of interesting ways that go beyond the basic String#match
method. In this post I cover a few of my favorites. http://blog.honeybadger.io/ruby-regex-tricks/
Opalist Newsletter - Issue #12
Opal is a Ruby-to-JS compiler and runtime that allows you to write Ruby code for the browser. Opalist is your source for the latest Opal ecosystem news. This issue is almost all release news – there’s just that much new stuff to check out: Opal 0.9, Inesita (a brand-new front-end framework), Volt 0.9.5, Opal-ActiveSupport 0.2.0, and more! Check out Opalist Issue #12 here!
Remove N+1 queries in your Ruby on Rails app
Ever wondered why your page loads slower than it should when you do simple data representation or iteration over a bunch of data? One answer might be that you have the N+1 problem which slows your page significantly. But what is that N+1 problem and how to resolve it? More inside
Arbolito. A simple currency converter gem
Arbolito lets you configure fixed prices for currencies, but also use Yahoo Finance API to convert currencies. It provides an easy DSL to use and it's agnostic on your money implementation. It just use BigDecimal and a Hash. [more inside]
How to deploy Heroku style Ruby application with Docker
Developing and deploying applications to Heroku was revolutionary when it was introduced. Developer could just focus on developing a killer app instead of configuring servers and build scripts. [more inside]
Anatomy of good service object
Writing good service object can be hard. In this article I brake down what I think are the major qualities of good service object.
i18n-tasks v0.9.0
i18n-tasks helps you find and manage missing and unused translations. [more inside]
factbook.json - 260+ Public Domain (Free) Country Profiles Updated- Pop, Internet,...
Hello, I’ve updated the /factbook.json archive (repo). What’s news? All 260+ country profiles updated using the latest (live) pages from the CIA World Factbook site. The /factbook.json archive now follows 1:1 the “official” structure e.g. All country profiles now use the two-letter GEC (formerly FIPS) codes e.g. au for Austria, gm for Germany, and so on. All country profiles are now included e.g. all oceans, the world, the gaza strip, the west bank, etc. The country profiles now get organized / stored by region as used / assigned by the World Factbook. Cheers. PS: Use the factbook command line tool and scripts to build your own up-to-date country profiles.
The Out-Of-Memory-Killer is after your dockerized services
… or why you should care about “OOMScoreAdjust” in your systemd-enabled docker-images Recently I put together a docker image with “PostgreSQL 9.4” installed from the project’s software repository on “CentOS 7.1” to back a rails application. Unfortunately I was not abled to run the “PostgreSQL”-server in a container based on that image. It failed with exit code 206/OOM_ADJUST. In this article I’m going to describe the reason for the failure using a minimal failing example. [more inside]
4 Ways to Parse a JSON API in Ruby
A quick tutorial on four popular ways to parse the JSON results from a RESTful API. Includes code snippets for net/http, HTTParty, rest-client and Faraday.
Using conditionals inside Ruby's regular expressions
In this post, we’ll dive into regex conditionals and discuss how to work around the limitations in Ruby’s implementation of them http://blog.honeybadger.io/using-conditionals-inside-ruby-regular-expressions/
Rubinius, Inc - A Benefit Company
Rubinius is now backed by a benefit company, one that wishes to support the development of Rubinius in a holistic way.
Effective TDD With Ruby: Vim Setup
How to use Vim for fast TDD with Ruby. We’ll discuss how to build your own setup, standing on the shoulders of giants, plugins for syntax, autocomplete, find in project and themes carousel. [more inside]
How to Traverse Foreign Ruby Code
A Ruby on Rails project will most likely contain large amounts of third party software. Software written by other people can fluctuate greatly in terms of documentation. Even very well documented software might have pieces that are more shrouded than others. [more inside]
Deploying Your Docker Rails App
Leigh Halliday shows how to deploy a Docker Rails app to a production environment on Heroku. This is part 3 of a 3-part series on testing and deploying Rails apps with Docker.
Testing a Little More
If you have a codebase that hasn’t been tested, or the tests have not been maintained, it can be overwhelming to add test coverage. We’ll walk through one simple way to test a little more.
Solving a production performance issue with Union Station
We wrote an article on how to use Union Station to improve your web application performance. In the process we found a performance issue in Union Station itself and subsequently solved it! Read it here
Digging Into The Finder Object Pattern
The concept of “skinny controllers” and “fat models” is a fairly common one in Rails. But what happens when you need to construct complex queries that don’t really belong in a controller, but are too overwhelming for your model? The finder object pattern is an elegant solution for this problem, and this blog post digs into the rhyme and reason behind them.
Jekyll 3.0 (& Jekyll Assets) Now Live - The World's Most Popular (Static) Site Builde
Congrats to Parker Moore and team for the latest and greatest update. What’s news? [more inside]
fedux.org – Care about "OOMScoreAdjust" in your systemd-enabled docker-images
Recently I put together a docker image with “PostgreSQL 9.4” installed from the project’s software repository on “CentOS 7.1” to back a rails application. Unfortunately I was not abled to run the “PostgreSQL”-server in a container based on that image. It failed with exit code 206/OOM_ADJUST. In this article I’m going to describe the reason for the failure using a minimal failing example.
How to Deploy a Ruby on Rails Application to Elastic Beanstalk
I wrote an article about deploying a Rails application to Elastic Beanstalk, while automating the whole process with Semaphore CI. Read the article.
Mapping Data with Representable - Part II
Recently I started a blog geared toward Ruby novices. My first series is a primer on using external APIs as datasources and mapping their data to ActiveRecord with the Representable gem. Part II is a beginner’s intro to the request/response cycle and some of the problems one can run into when mapping JSON documents to ActiveRecord objects.