This is the previous version of the Belfast Ruby website. The new website was launched at the Belfast Ruby meetup of March 2014.
We created a new repo for the new site, check it out or contribute code here - https://github.com/belfastruby/belfastruby-website
First, make sure all dependencies are met (see bottom).
gem install bundler
cd belfastruby
bundle install
rake db:create
rake db:migrate
# In a new window
cd belfastruby
rails s
open http://0.0.0.0:3000
To get started with the application locally, you'll need Ruby 1.9.2 (using RVM)
# This didn't work for me, using the instructions on this page did: http://beginrescueend.com/rvm/install/ [NP]
bash < <( curl http://rvm.beginrescueend.com/releases/rvm-install-head )
# Add this to the bottom of the file ~/.bash_profile
[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm"
rvm install 1.9.2
rvm use 1.9.2 --default