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.
ActiveRecord::SaneSchemaDumper for a cleaner db/schema.rb file
Last week, we released the activerecord_sane_schema_dumper gem (extracted from an initializer we’ve been using for months) in order to generate a clean db/schema.rb file with Rails. It strips useless (and harmful) alignment whitespace from the file so changes to your DB columns doesn’t affect irrelevant lines.
Build a Ruby Gem is 25% off until the end of RubyConf
Build a Ruby Gem is 25% off until the end of RubyConf. Hope you enjoy!
Open-sourcing Aloo
Today I’m Open-sourcing Aloo - my Rails Rumble 2014 submission. Aloo is GIST for data - uses Rails and Redis.
stream-rails, a gem to scalable newsfeeds and activity feeds
I’ve just released a new version of stream-rails. A gem to create activity feeds and newsfeeds with Ruby on Rails. The gem comes with a very basic example app that you can deploy to Heroku.
finite_machine v0.10.0 release
finite_machine gets better with alias_target method and log_transitions option. Please see documentation for full interface.
Rubinius 3.0 - The Language
The last post in the intro series on Rubinius 3.0 talks about some exciting changes to the language.
Shorter, simpler code with Forwardable
I’m an avid user of Forwardable from Ruby’s standard library. My latest article explains why you can make shorter, simpler code with Forwardable and hide the noise of boilerplate Ruby code.
tty-spinner - 0.1.0 release!
I just released tty-spinner for drawing spinning animations in terminal emulators.
Rubinius 3.0 - The Tools
Here Brian introduces the subsystems of Rubinius: GC, JIT, Metric, UI, and CodeDB.
Clojure Loops in Ruby
An article that builds Clojure style loops in Ruby using continuations. Not recommended for pregnant women or individuals with pre-existing heart conditions.
Action Access: Access control system for Rails.
Action Access is an access control system for Rails that provides a modular and easy way to secure applications and handle permissions. It works at controller level focusing on what actions are accessible for the current user instead of messing with models and their attributes. Read more »
Using spring with pow!
The other day I was a bit sad for I was aware that pow (the web server) wasn’t leveraging spring (the Rails preloader) with its fast load times. Read more »
The Scribble gem: A new client facing template language for Ruby
I just launched a new gem named Scribble. [more inside]
5 Tips for Preventing MySQL deadlocks in your Rails application
Check out Hemant Kumar’s post about preventing MySQL deadlocks in Rails…
Persistent queries in Ruby on Rails with PostgreSQL
Sometimes you need to save a SQL query or query parameters for the future use. Here’s a flexible solution allowing you to save & use it every week.
Persistent queries in Ruby on Rails with PostgreSQL.
Sometimes you need to save a SQL query or query parameters for the future use. Here’s a flexible solution that allows you to save it and reuse every week
Maxitest = Minitest + the features you always wanted
Maxitext - Ctrl+c stops tests and prints failures - pastable rerun snippet for failures - multiple before & after blocks - around blocks around { |t| Dir.chdir(…) { t.call } } - red-green output - mtest executable to run by line number and by folder and more goodies :)
themes_on_rails v0.3.0 has been released
Checkout the v0.3.0 changelog of themes_on_rails .
Lazy Refactoring with Ruby's Enumerator
Look over our shoulder as we refactor and optimize a set of queries.
Rubinius 3.0 - The Instructions
Starting to dive a bit deeper about improvements in the Rubinius instruction set.
Rubinius 3.0 - Process
Interesting thoughts and some welcome improvements planned for Rubinius 3.0.
Migrating to Ninefold, A Source of Developer Joy!
One of my first tasks as NY Tech Meetup’s newly minted hacker-in-residence was migrating our application from Heroku to Ninefold. Scary! Or at least it sounded like it would be. But it turned out to be a pretty straightforward and painless process. Here’s what you do…
A nifty service layer for your Rails app
I just launched Services - A nifty service layer for your Rails app and blogged about it. Let me know what you think!
Introducing new Railsed-based Video Distribution Platform
Over last couple of months, our team has helped further develop a unique video distribution platform. Finally, the big launch day has come and we’d love to introduce you to Uscreen: here’s a little cast study about the platform.
Ru - Ruby in your shell!
Ru brings Ruby’s expressiveness, cleanliness, and readability to the command line. It lets you avoid looking up pesky options in man pages and Googling how to write a transformation in bash that would take you approximately 1s to write in Ruby. [more inside]