Blog posts with rails tag
Real Life Examples: Updating Rails 5.2 to Rails 6.0
As it's been some time since Rails 6 was released (officially on 6th of August 2019), it's about time to update your application to this version of the framework. In this tutorial, I will show you how to easily do it, quickly solve potential problems along the way and take full advantage of some new features coming with Rails 6!
Why should you choose Ruby on Rails for your MVP?
Choosing the technology stack for a minimum viable product is often critical for your business’ success. Ruby on Rails can accelerate its creation and cut the development costs. In this article, I will list the pros of ROR and show you a case study of a successful Rails MVP we have built.
New features in Rails 6: Multiple databases, parallel tests, Action Mailbox and more
After several working versions released previously, Rails 6.0 is finally out, bringing changes extracted from or built by dev teams behind the framework's flagship products like Basecamp or GitHub. Let's see what new features its final release is bringing and consider if it's for the better or worse for the Ruby on Rails ecosystem.
How your business can benefit from software outsourcing
Google, Apple, Buffer are some of many tech giants who outsource software work to external development teams. But is outsourcing a fit for your purpose? Let's compare it with working with an in-house development team and highlight possible scenarios for your business.
Ruby vs Elixir. Which one do you need for your software project?
The debate over Ruby’s possible decline and the brand new era of Elixir seems to be alive and well in the dev community with threads like ‘Is Ruby on Rails dead?’ and ‘Will Elixir Phoenix destroy Ruby on Rails?’ on Quora and numerous similar topics on Reddit. But what if we are asking the wrong questions?
How to get the job of a Ruby on Rails developer at Prograils
You have completed your Ruby on Rails course or many of them, been writing code for a while now and have some brilliant ideas. Why not test them in some real work environment and apply for a Ruby on Rails developer position? At Prograils, you have a unique opportunity to learn its flavor. Let us show you how to impress us.
They do IT again! Don’t miss Rails Girls Poznań 2018
Once again, Prograils are the main sponsor of the Rails Girls Poznań workshops. Between September 21 and 22, you’ll have a unique opportunity to learn how to design your first app in Ruby on Rails for free. All you need is your own laptop, hunger for knowledge and… being a woman! The registration process is over.
Bailiff 2.0: How my recruitment app helps manage team expenses
The recruitment process may look very different and may have a different number of steps, depending on the size of the company or a position you are applying for. Let me share with you the path I had to pass in order to become a junior Ruby on Rails developer at Prograils. This, however, was not some useless task you are usually asked to complete in order to get hired. I am happy that the outcome of my work, the app called Bailiff2.0 is now in frequent use among the team members of our software house to manage daily expenses.
Adding Webpacker to a legacy Rails app
Some say there was not a day without a new JavaScript framework these past years - that means JS is evolving every day. The problem is, Rails does not provide any proper support for those new toys. Unless you get the hang of a gem called Webpacker, which comes bundled with Rails 5.1+.
Three ways of iterating over tree-like ActiveRecord structures
You are building an e-commerce app and at some point you introduce a Category model as a part of Product data. A Category can have various subcategories, which are represented by the same model. At this point, it's obvious we are dealing with a tree-like data structure. Step by step, I'll introduce three ways of iteration over such a structure and compare their performance.