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.
Why I left Blogger for Jekyll
Thought I’d share some of the main reasons I left Google Blogger for Jekyll + Github Pages. It’s not entirely Ruby-specific, but I thought other bloggers would find it interesting. Nonetheless, Jekyll is an excellent platform and I’m loving it so far! [more inside]
Check out Great tools for ROR
Hello Guys, I was reading on ROR , I found great post on ROR tools and now would like to share with you just check out http://www.seaniea.com/amazing-9-tools-for-ruby-on-rails/
Building a Debug Log Filter with Ruby
This blog post explains how to build a clean and useful debug log filter which improves day to day debugging workflow with Ruby and Rails. [more inside]
Common Bash Commands Done in Ruby
Bash is great for getting things done around your ruby project but it would be great to do some of that in ruby. Here is a post that explains how to replace some bash tricks with their ruby equivalents. Bash Commands – But In Ruby!
Ridiculously Fast API Authentication with Phoenix
With Phoenix, productivity is a first-class citizen. Micah Woods looks at how you can create a simple token-based API authentication from scratch.
Setting up git push code deploy to VPS
If you are setting up your own remote server/VPS for your next Ruby project you will probably like to make it easy to deploy your code with simple git push. It’s actually easier to set up than you think! Read more
Ruby on Rails project starter
Flexible project starter with mass of gems, which you can add at the very beginning and be free from initial setup. https://github.com/kvokka/onotole
left_pad
Ruby implementation famous npm’s left-pad is finally here - https://github.com/atipugin/left_pad
Improving your Microservices Integration Performance with Memcache and ETAGs
Many people are implementing microservices nowadays, a never ending spaghetti of services calling services calling services, and so on. And it becomes slower and slower. What to do? Many things, for sure, but we can start simple: using HTTP itself to help out. In my latest post I explore a simple scenario to explain basic concepts that every developer should know.
has_secure_token to generate unique random token in Rails 5
We can generate unique random token with Rails 5 [more inside]
Liquid Template Language Docu Reformated - Single-Page Black-n-White Book Version
Hello, I’ve reformated the official Liquid template language docu into a single-page black-n-white book version (using the Manuscripts format). Why? Some might want to print it. Some might want to download it as a PDF. Some might prefer a simple black and white style. Questions? Comments? Welcome. Cheers. PS: Note/Disclaimer: The book version is not (yet) perfect and a work-in-progress.
How to Build a Ruby on Rails Engine
Ruby on Rails Engines are miniature applications whose purpose is to supplement a larger Ruby on Rails application. If functionality can exist independent from a main application, an Engine can provide a wonderful degree of encapsulation. I wrote this step by step guide to help you get started building your very own Engine!
Cuba and React
Cuba-React seamlessly integrates React with the Cuba micro-framework. Any feedback/PRs/abuse gratefully received. Available on RubyGems and via gem install cuba-react
. Enjoy!
A Deep Dive into Ruby Scopes
Daniel P. Clark gives an overview on Ruby Scopes. Article here.
Is your Rails app ready for Production?
Many projects need just small touches before hitting production. Check to see if you’re ok with this small guide. This is targeted to beginners but I’ve seen even experienced developers miss some of those points.
better_errors than web-console
Oh, opinions. After working on the Ruby Heroes site lately I realized that I just couldn’t get the kind of debugging I’m used to with better_errors in web-console, so I made a quick little screencast to demonstrate why I think better_errors is so much better. [more inside]
Rails: Has One Through Polymorphic Relation
In wanting to do the inverse of a standard polymorphic belongs_to relationship, I found that it could be done in a has_one through scenario. Code with light commentary [here]
Essential Ruby Kindle Book
Now available on the Amazon Kindle store. Check out Essential Ruby
Vote for your 2016 Ruby Heroes
Take a moment to say nice things about the people who made the Ruby community a better place this year. Please cast your votes at rubyheroes.com and spread the word to Rubyists around the world.
How to upgrade to Rails 5
We’re now running Rails 5 @dockbit and I’ve shared our experience with the upgrade here: https://medium.com/@tair/how-to-upgrade-to-rails-5-657b3bfd83
Auto Backup Database in Rails Application
In this post, I’ll show you 5 basic steps to auto backup database in your Rails app by using ‘backup’ and ‘whenever’ gems. Read more: http://goo.gl/iomK5u
Setting up an S3 bucket for your assets/uploads
Because S3 is awesome, but the policies are awful: https://buildtoship.com/setting-up-an-s3-bucket-for-your-asssets/