Skip to content

This is the repository used for Introduction to Ruby on Rails 2013

Notifications You must be signed in to change notification settings

x-goose-x/learning-rails-2013

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#Setup and Installation

First we'll want to install Ruby. Without ruby none of the rest of the magic can happen! If we're using OS X, the best way to go is probably homebrew, so let's go ahead and install that.

If you don't have Xcode installed with its command line utilities, now is probably a good idea to do that. Just hit up the Mac App store and prepare for a huge 4ish gig install.

There's a pretty good writeup that'll get us started with what we need right here

If you're on Linux this should be a little easier. For Ubuntu just paste these in:

apt-get -y update
apt-get -y install build-essential zlib1g-dev libssl-dev libreadline6-dev libyaml-dev
cd /tmp
wget http://ftp.ruby-lang.org/pub/ruby/2.0/ruby-2.0.0-p0.tar.gz
tar -xvzf ruby-2.0.0-p0.tar.gz
cd ruby-2.0.0-p0/
./configure --prefix=/usr/local
make
make install

If you use some other flavor you're on your own, just ask Google, someone has probably had to deal with this.

If you're using Windows, I am so, so, sorry you might want to try using RubyInstaller. I know very little about it so your mileage may vary, but let me know how it works out!

#Bundler

We'll need bundler too. If you're using rvm you'll just want to use gem install bundler. Bundler is a kind of package manager for ruby, and it will handle all of the gems for our project.

Great! Now we should be able to clone down the project and get started.

TODO: CLONE URL GOES HERE

About

This is the repository used for Introduction to Ruby on Rails 2013

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors