Hi there everyone. I'm new to linux and newer to rails. I installed ruby 1.8.7 which is compatible with rails 3, i did the gem update and it installed for me rails 3.0.1 and all necessary files. However when i make a new rails application using the 'rails new myapp' command i notice that the script folder only has one file 'script/rails' can some one help me out i have no idea hat i dad wrong and where to go from here
+2
A:
What are you expecting? The ../script/ folder by default only has the "rails" file.
chsonnu
2010-10-25 19:24:13
OK, the book didn't indicate that. Thanks
Xaitec
2010-10-26 12:29:35
A:
Have a look inti this link:- It has complete steps to install Rails in ubuntu.
http://wiki.rubyonrails.org/getting-started/installation/linux.
Installing sqlite3 may be missing in the link , hence you can use the below commands:-
sudo apt-get install libsqlite3-dev ruby-dev followed by
"sudo gem install sqlite3-ruby"
Saran
2010-10-29 03:45:56