Featured
-
How Regression Testing Detects Integral Errors In Business Processes
Humans are forever changing and evolving and so to
by kristina.rigina -
Get Display Banner Advertising Opportunity on FindNerd Platform
“Do you have a product or service that nee
by manoj.rawat -
Android O Released with Top 7 New Features for App Developers
Android was founded by Andy Rubin, Rich Miner, Nic
by sudhanshu.tripathi -
Top 5 Features That Make Laravel the Best PHP Framework for Development
Laravel is a free open source Web Framework of PHP
by abhishek.tiwari.458 -
Objective C or Swift - Which Technology to Learn for iOS Development?
Swift programming language is completely based on
by siddharth.sindhi
Tags
How to create a new gemset & copy an existing gemset into it
We can create a new gemset to install a specific set of gems in it. In this i am copying an existing gemset into a newly created gemset.
1> To list the available gemsets we can type :
rvm gemset list
gemsets for ruby-2.2.3 (found in /...
How to install Rails in a particular gemset for a particular version of Ruby
1> For this we should first confirm the ruby version we are currently on
rvm current
(ruby-2.2.3)
2> To view the list of available gemsets before selecting a particular gemset, we can type
rvm gemset list
gemsets for...
SETTING UP ROR FOR THE FIRST TIME ON A NEW UBUNTU SYSTEM USING RVM
1> We need to install RVM before we can install Ruby, because RVM is a version manager and it will help us to install & manage different versions of Ruby on the same system and easily switch between them.
To install RVM we first need to...