Rails Trial Install

How to configure Trial 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:TOKEN@registry.nes.herodevs.com/rubygems/' do
  gem 'rails', '6.1.7.10'
  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 'railslts-version', require: false
  gem 'rack',             require: false
 end

Install

Gemfile
bundle install

Direct download URLs for the Rails NES are available below:

GemURL
rails
6.1.7.10
Download
railties
6.1.7.10
Download
actionmailer
6.1.7.10
Download
actioncable
6.1.7.10
Download
actiontext
6.1.7.10
Download
actionview
6.1.7.10
Download
actionmailbox
6.1.7.10
Download
activerecord
6.1.7.10
Download
activejob
6.1.7.10
Download
activestorage
6.1.7.10
Download
activesupport
6.1.7.10
Download
activemodel
2.2.14.10
Download
actionpack
2.2.14.10
Download
curl --header "Authorization: Bearer neverendingsupport" \
     --location \
     --output <PACKAGE_VERSION>.tgz \
     https://registry.nes.herodevs.com/rubygems/gems/<PACKAGE_VERSION>.gem