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.
Easy and active-record-like interface to deal with http json services
Master microservice architectures! Access data provided by http json services with ease. Just like using Active-Record: https://github.com/local-ch/lhs
Refactoring in Ruby: Primitive Obsession
How to refactor your way out of the primitive obsession code smell, with extensive examples in Ruby. Check it out here.
Ruby Developer - Essential Bash commands
Most of us, Ruby programmers, know Ruby pretty well, but how well do you know your console. In this series we dive into improving your bash skills. https://www.zmwolski.com/Ruby-developer-essential-bash-commands
How to upgrade to Rails 5
Ruby on Rails version 5 is just around the corner, with 5.0.0.beta3 released in late February. Is your app ready? Follow these best practices to make your upgrade go as smoothly as possible.
Make the Impossible Possible
Great things are buried where you don’t expect them. Like jewels buried in the earth a mistake can lead to great possibilities. When you choose not to hear the naysayers you may just Make the Impossible Possible
Wye Tech News #13
A new issue of our weekly compilation of interesting news and articles about Ruby, Rails, JavaScript and web development related stuff that we found during the week.
markdownlint (mdl) tool (gem)- document style/rules checker - new docu (book edition)
Hello, if anybody is using markdown - I’ve put together an online book edition (using the manuscripts format) of the markdownlint documentation and style rules by Mark Harrison. Again thousands thanks to Mark Harrison for the great tool and documentation. See Markdown Lint Tool Documentation (Book Edition). Cheers. PS: Interested in more docs as books? See the Hyde Press Bookshelf.
Structuring Models
Here’s a good way to structure models that you can extend to any object. [MORE INSIDE]
Upload multiple files using Dropzonejs in Ruby on Rails
You can read more in: http://goo.gl/nLJxVQ
Simple signup and login in your app (Part 2)
This is part 2 of my blog post series about creating a simple signup and sign in flow using Rails’ built-in has_secure_password features.
What is Redis? A gentle introduction using Ruby
Redis is a free and open-source in-memory key-value store, similar to Memcached (used to speed up dynamic web applications by caching data in RAM) with the main difference of being persisted to disk and having more data types. In this article you will see an introduction on how to interact with Redis using Ruby. http://davidmles.com/blog/what-is-redis-introduction-ruby/
Compress Custom Web Fonts in Rails 4.2 Apps
Learn how to compress custom web fonts in Rails 4.2 apps without writing any code.
How I Do Rails Controllers
In light of DHH’s current insights on how to structure Rails controllers, I’d like to share how I typically handle controllers in a Rails application. (tl;dr I use CanCanCan and Responders to keep my controllers lean and boring.)
Ruby's Scaffolding Tool for New Projects (Gems, Sinatra, etc.) e.g. $ quik new gem
Hello, I’ve moved all quik project templates and scripts to a new github org, that is, quikstart. What’s quik? quik is a ruby quick starter template script wizard .:. the missing code generator. Try: [more inside]
Simple gem for writing conditionals with dates and time
https://github.com/Szeliga/time-predicates - when debugging legacy code or introducing myself to a new codebase, I always have struggled with figuring out which date is in the future and when the condition is going to be fulfilled. So I wrote this gem to provide easy to read predicates for Date and Time objects.
Does Rails everything for us?
The latest Rails security fixes were another reminder that we shouldn’t rely too much on a framework to solve everything security for us. Let’s take a moment every time we use user input directly (like in render params[:id]) and think about what class it could potentially be: Fixnum, String, Array, Hash, nil, a blank string. This and other news in the Rails and web app security reading list.
Stronger Parameters Gem
Discovered this today - a gem to help with type-checking submitted Rails params: https://developer.zendesk.com/blog/introducing-stronger-parameters
Rails 5 adds http_cache_forever to allow caching of response forever
Rails 5 allows to cache HTTP responses forever by introducting http_cache_forever method. [more inside]
ActiveRecord is reinventing Sequel
I’ve been happily using Sequel for over a year now, and was finding it to be consistently better than ActiveRecord. Moreover, I found out that most of new ActiveRecord’s features were already part of Sequel for quite some time. I think that’s a big and controversial discovery, so I decided to write a post where I attempt to prove my claims.
Avoid race conditions with record locking
Especially useful with high volume applications, record locking helps to maintain data integrity and avoid race conditions. [MORE INSIDE]