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.
tty-box with connected borders
Latest release of tty-box adds new parameters for modifying border corners. What this means is that you can create complex layouts of seamlessly connected boxes. Enjoy!
Understanding Method Visibility In Ruby
What does public, private & protected mean in Ruby? These 3 methods control the public interface of your class. Why would you want to do that? Find out in this NEW Ruby article! https://www.rubyguides.com/2018/10/method-visibility/
render_async 2.0.0 Brings Error Handling and Loses jQuery as its Default Option
render_async 2.0.0 has just been released! [more inside]
[Tutorial] Building Live Chat Between Users in a Rails application using Planga
Planga is a new web-service that is currently in open Beta, that allows you to seamlessly integrate live chat functionality in your existing web-app. [more inside]
[Screencast] Service Objects for API Interactions with Twilio
In this episode, learn how to extract the interactions with an external API into a service object so that code is isolated and interchangeable. https://www.driftingruby.com/episodes/service-objects-for-api-interactions-with-twilio
Podcast - Generate a (static) podcast website from a folder of MP3s w/ jekyll
Hello, Pat Hawks hacked together at yesterday’ HackUIowa a new tool (in ruby). Let’s welcome - podcast - that lets you generate a (static) podcast website from a folder of MP3 files with jekyll and friends. See Herky Hack for a first sample (live) podcast. Happy publishing your radio talk shows with jekyll and friends. Cheers. Prost.#jekyllrb #podcast #mp3 #audio #id3 PS: Did you know? Octopod is another (free, open source) extension for publishing podcast episodes with jekyll.
Rails: Active Storage Removing Attachment
Now that we can add a cover picture attachment to our application the next thing we need to do is the ability to remove it. We’ll need to do a few things to get this setup. https://www.codemy.net/posts/rails-active-storage-removing-attachment
Cibyl, a lightweight curly-bracket language which compiles to Ruby and Crystal
Cibyl allows to develop Ruby and Crystal applications with a C-like syntax : [more inside]
An OpenCL backend for TensorStream
After some time I finally have an alpha version of an OpenCL backend for the TensorStream machine learning library that I have been working on for quite some time. Though my goal for TensorStream was to have a pure ruby implementation of TensorFlow, I always intended it to allow for high performance implementations by allowing various backends to be defined. [more inside]
5 security issues in Ruby on Rails apps from real life
…and how I fixed them :-) [more inside]
Glim - A new faster jekyll website compiler clone / alternative (in ruby)
Hello, Jekyll not fast enough? Why not build a compatible faster clone / alternative from scratch / zero (in ruby)? Sounds crazy? Allan Odgaard (of TextMate fame) has just done it and with about 3 000 lines of ruby code offers even more features than jekyll itself :-) e.g. built-in tags and categories for collections, lazy evaluation and parallized builds, better defaults, and much more. Find out more at the Glim website compiler source project repo. Cheers. Prost. PS: By the way - did you know? Slide Show (S9) is another jekyll-compatible clone :-) that lets you build presentations / talk slides in markdown (kramdown, really) and jekyll themes e.g. reveal.js, shower.js, bespoke.js, s6, etc.
How To Delegate Methods in Ruby
In this article you’ll learn about delegation in Ruby using 3 different methods. Method delegation allows you to pass method calls into another object so you can implement design patterns. https://www.rubyguides.com/2018/10/delegate-methods-in-ruby/
Phusion: Passenger 5.3.5 released
Version 5.3.5 of the Passenger app server fixes an issue with Ubuntu 18.04 package installation, and improves usability of crash reports: https://blog.phusion.nl/2018/10/03/passenger-5-3-5/
How to share containers across multiple projects using Docker Compose
Learn how to share containers (e.g. a database) across multiple projects using Docker Compose and networks https://www.chrisblunt.com/rails-on-docker-share-containers-across-multiple-projects/
Video: Intro to Rails Code Audits
Want to learn how to audit your Rails code base? Here’s a video introduction to Ruby on Rails code audits. [more inside]
Exceptional Creatures: Net::OpenTimeout
Net::OpenTimeout is raised when a connection cannot be created within a specified amount of time. Getting this error a few times can be a sign of a healthy application, although you may want to add some error handling. Meet Net::OpenTimeout at Exceptional Creatures
Changelogs: To write or to generate?
Part III of our series on changelogs focuses on processes and tools. How can we, especially in larger open source projects with countless contributors, ensure a mostly complete changelog? How much automation is possible and how much is useful? This article tries to answer all of these questions and gives valuable tips for overloaded open source maintainers.
5 Ruby Tips You Probably Don’t Know
In this article we’re going to explore the following topics:
The Magic of Class-level Instance Variables
Remember our crazy adventure in which we injected functionality to a class by changing the way Ruby creates objects? This week, we’re turning that into a Wrappable module to learn all about class-level instance variables. 🧙🏼♀️ https://blog.appsignal.com/2018/10/02/ruby-magic-class-level-instance-variables.html
rspec-benchmark v0.4.0 with complexity matchers!
The newest rspec-benchmark adds computational complexity matchers such as perform_linear or perform_loagarithmic to help you establish the asymptotic behaviour of your code in a test suite. It will also allow you to generate a range of test inputs for your benchmark using in_range matcher. Enjoy!
London Ruby Unconference is this Saturday!
The London Ruby Unconference is a free event for Rubyists from the UK and abroad. The London Ruby community meets every year in the first Saturday of October to share their enthusiasm for Ruby and learn from each other in more than 16 sessions suggested by the attendees. Get your free ticket here! and join us with your colleagues and friends!
SimpleAMS: Modern Ruby Serializers
Hello, I have been building a gem lately (=last 1 year) to replace the original ActiveModel Serializers. It’s called SimpleAMS. The idea is to embrace POROs and provide a very flexible interface. Using some basic benchmarks it seems it’s a bit slower than jsonapi-rb. Although there are a couple of things left to do (including optimizations), we have it in production and integrated it in various projects. If you are starting a new project please consider using it :)