What is the RAILS_GEM_VERSION

Where to find it and what it actually does in your application

Whilst trying to hunt down why a Rails app I was trying to rake wasn’t playing ball I decided to go line by line through the config/environment.rb file.

The first non-commented line sets the RAILS_GEM_VERSION.

This is common to most Rails apps, and I have never thought to question it before, but now I need to be able to see were something is dying and every bit of knowledge helps!

So RAILS_GEM_VERSION highlights the version of Rails that should be used by an application. The reason this is important is because you can have multiple versions of Rails on your machine at any one time, and newer versions of Rails don’t always play nicely with older ones, so having your app freeze on a particular version is good practice.


Recent posts View all

Web Dev

Creating draft posts in Jekyll

How to create and develop with draft posts in Jekyll

Ruby

Forcing a Rails database column to be not null

How you can force a table column to always have something in it with Rails