Rails 6.1.x Install

How to configure Rails NES

Prerequisites

  1. Make sure your project meets the Minimum Requirements to ensure a smooth installation.
  2. The instructions below assume you are using Bundler to manage your gem dependencies. If your project isn't using Bundler, you should upgrade to Bundler.

Detailed Instructions

Update Gemfile

Open the Bundler config file (Gemfile) in your project's directory and find this line:

Gemfile
gem 'rails'

Replace that line with the following:

Gemfile
source 'https://USER:NES_ACCESS_TOKEN@registry.nes.herodevs.com/rubygems/' do
  gem 'rails', '6.1.7.27'
  gem 'activesupport',   require: false
  gem 'activemodel',     require: false
  gem 'activerecord',    require: false
  gem 'actionview',      require: false
  gem 'actionpack',      require: false
  gem 'activejob',       require: false
  gem 'actionmailer',    require: false
  gem 'actioncable',     require: false
  gem 'activestorage',   require: false
  gem 'actionmailbox',   require: false
  gem 'actiontext',      require: false
  gem 'railties',        require: false
  gem 'rack',            require: false
 end

Install

Gemfile
bundle install

Additional Information

Direct Download URLs

The direct download URL for Rails NES is:

GemURL
rails
6.1.7.27
Download
activesupport
6.1.7.27
Download
activemodel
6.1.7.27
Download
activerecord
6.1.7.27
Download
actionview
6.1.7.27
Download
actionpack
6.1.7.27
Download
activejob
6.1.7.27
Download
actionmailer
6.1.7.27
Download
actioncable
6.1.7.27
Download
activestorage
6.1.7.27
Download
actionmailbox
6.1.7.27
Download
actiontext
6.1.7.27
Download
railties
6.1.7.27
Download
rack
2.2.14.10
Download