While working with many projects that uses different ruby versions and rails versions, one big problem arises that how do we manage all this ?We know that managing multiple rails versions wont be problem at all.but what about ruby versions, How one can manage multiple ruby versions. also while upgrading or degrading ruby version, we … Continue reading Managing multiple ruby versions and rails versions with rvm
Category: Ruby
upgrading rails version
Here are the simple steps to be followed while upgrading rails version to use.# Install rails version1. gem install rails -v == gem install rails 2.3.3# Upgrade environment.rb for new version2. RAILS_GEM_VERSION = '' unless defined? RAILS_GEM_VERSION == RAILS_GEM_VERSION = '2.3.3' unless defined? RAILS_GEM_VERSION# Upgrade necessary files for the new version3. rake rails:upadte# Start server4. … Continue reading upgrading rails version
Installing ruby 1.9.1
installing ruby 1.9.1 is very easy .......follow simple stepswget ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.1-p0.tar.gztar -xvf ruby-1.9.1-p0.tar.gzcd ruby-1.9.1-p0./configuremakemake testsudo make installThats, it !
