Skip to content

Instantly share code, notes, and snippets.

@donpdonp
Last active August 29, 2015 14:04
Show Gist options
  • Save donpdonp/de263ee41feda6a674f0 to your computer and use it in GitHub Desktop.
Save donpdonp/de263ee41feda6a674f0 to your computer and use it in GitHub Desktop.
OpenConferenceWare Dev setup

This setup guide will not pollute your system gem library and will use the local copy of the openconferenceware engine.

Clone the forked repo

$ git clone git@github.com:username/openconferenceware.git

Create a sample app to use the engine

$ mkdir myconf
$ cd myconf
$ vi Gemfile
source 'https://rubygems.org'
gem 'rails' , '4.0.2'
$ bundle install --path gems --binstubs=gembin
$ gembin/rails new web --skip-bundle

Configure and start the sample app

$ cd web
$ vi Gemfile
** Add this line
gem 'open_conference_ware', :git => "../../openconferenceware"
$ bundle install --path gems
$ bin/rails s

Go to http://localhost:3000 in a browser

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment