views:

45

answers:

2

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
OK, the book didn't indicate that. Thanks
Xaitec
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
Thanks, it all works perfect now
Xaitec
Glad that I could help.
Saran