GithubHelp home page GithubHelp logo

learning-rails-2013's Introduction

#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

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.