This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#BECOME SUPER USER# | |
sudo -i | |
#add sublime to repository# | |
add-apt-repository ppa:webupd8team/sublime-text-2 | |
#update# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
when Rails create App with SqlLite Database as Default. | |
Then U wanted to create app with mysql, follow the steps | |
1> First of all u need to install mysql2 in your system(install mysql2 not mysql) | |
"sudo gem install mysql2 -v=0.2.11" // Version is according to your combinational needs of your rails | |
2> Once you installed, Then u r ready to create New app with Mysql as default | |
"rails new sample_app -d mysql" | |
3>so your app is now created with mysql2 database, (Check in your gem file it will be Present) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hi geeks, | |
my rails new version is 3.2.3. | |
if i wanted to create new rails app with older version say 3.0.5, | |
i can create using the command | |
rails _3.0.5_ new app | |
but i was getting an error | |
/usr/local/lib/ruby/site_ruby/1.9.1/rubygems.rb:316:in `bin_path': can't find gem railties (["3.0.5"]) with executable rails (Gem::GemNotFoundException) |