Rails Trial Install
How to configure Trial Rails NES
Prerequisites
- Make sure your project meets the Minimum Requirements to ensure a smooth installation.
- 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:
gem 'rails'
Replace that line with the following:
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
Note
Replace USER
with rails and TOKEN
with herodevs
Install
bundle install
Credentials for Trial Downloads
When utilizing our browser links for direct download - you will be redirected to a page that will prompt you for "Sign In" credentials. For trial packages, you simply need to enter the below and click submit. This will not redirect to another page, but you should see the file appear in your downloads shortly thereafter.
- Username: HeroDevs
- Password: neverendingsupport
Direct download URLs for the Rails NES are available below:
Gem | URL |
---|---|
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 |
Alternate Download Method
If you're unable to utilize our browser download links, but would still like to download our products directly - you can run the following curl command following the same versioning guidelines as the above. Examples of what you would enter in place of <PACKAGE_VERSION> are shown in the above table in blue.
curl --header "Authorization: Bearer neverendingsupport" \
--location \
--output <PACKAGE_VERSION>.tgz \
https://registry.nes.herodevs.com/rubygems/gems/<PACKAGE_VERSION>.gem
For more information surrounding our Direct Download options, click here.