Installation on Ruby on Rails 3 on Ubuntu 10.10 is really easy peasy, However Ruby doesn't come pre-installed on Ubuntu like Python and Perl. To start of with installation of development tools for Rails we first need to install basic build tools like Compilers collection etc. There is handy packaged pre-built for that in Canonical repositories:
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
sudo apt-get install build-essential |
Assuming you want to use My SQL server with Rails next we would need to setup Ruby, My SQL Server and Client as well as some other essential tools:
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
sudo apt-get install ruby ri rdoc irb ruby-dev libruby libreadline-ruby libopenssl-ruby mysql-client mysql-server libmysql-ruby libmysqlclient-dev |
Now that Ruby and My SQL is setup We need to pull the latest version of Rubygems at run setup as a super user:
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
cd ~ | |
mkdir gems | |
cd gems | |
wget http://production.cf.rubygems.org/rubygems/rubygems-1.5.1.tgz | |
tar -xf rubygems-1.5.1.tgz | |
cd rubygems-1.5.1 | |
sudo ruby setup.rb | |
sudo ln -s /usr/bin/gem1.8 /usr/bin/gem | |
sudo gem update system |
In case you want to Sqlite 3 as development database with Rails 3 you may want to install that as well:
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
sudo apt-get install sqlite3 libsqlite3-dev | |
sudo gem install sqlite3-ruby |
As a last step install latest version on Ruby on Rails framework gems:
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
sudo gem install rails |
Now Ruby on Rails 3 is setup on your machine you can proceed with creating a new project and pulling in all the dependencies with bundler.