/thessrbio

Thessaloniki Ruby Meetup home

Primary LanguageRuby

thessrbio

Thessaloniki Ruby Meetup Home

This is a Ruby community project.

Members of the Thessaloniki Ruby Meetup (thessrb) are contributing to this effort.

Join us!

How to get started

Step 0. Install Ruby version 2.1.2 & Bundler gem

Install Ruby

Just make sure you have installed version 2.1.2 and this is your current version

ruby -v

Install Bundler gem

gem install bundler

Step 1. Clone this repo

git clone git@github.com:thessrb/thessrbio.git

Step 2. Install the dependencies

Change directory to path/to/thessrbio and execute:

bundle install --without production

Using --without production will install only the dependencies needed during development or local testing so that you don't have to install PostgreSQL locally in your system.

The first time you run this, it will create a .bundle/config file (which is git ignored) so that Bundler can "remember" your options.

This way, you won't have to use this option explicitly everytime you want to update the dependencies. You only need to run:

bundle

Go on! Test this out, run the above command to see that it is OK.

Step 3. Run the tests to make sure everything is working

rake

Step 4. Run the Rails server and enjoy...

bin/rails s

Something missing or something is wrong?

You can contribute!!!