winnipegrb / winnivote

Winnivote is a website to submit topics/ideas and vote to show which ones are more popular

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Winni Vote

Build Status

Description

Winnivote is a website to submit topics/ideas and vote to show which ones are more popular.

Goal

Use the development of Winnivote as a common topic for all the participants of the Winnipeg Ruby User Group so each meeetup a volunteer will show a feature or two that has been implemented.

Guidelines

As a learning experience, part of the goal is to use, highlight and learn good coding practices around the RoR world and programming in general.

Practices

  • BDD (every feature should have a specification that drives the development)
  • TDD (no line of production code is written without a test)
  • Branch per feature and then pull request
  • Code reviews
  • Heroku deployment with staging and production sites
  • Continuos Integration

Tools

  • PostgreSQL database
  • heroku toolbelt
  • Guard
  • slim templates
  • rSpec for unit and acceptance tests
  • Jasmine for JS unit and integration tests
  • Bootstrap
  • Font Awesome
  • Knockout.js
  • Coffeescript
  • Devise
  • Vagrant

Getting Started

Code

Check out the code first

git clone https://github.com/winnipegrb/winnivote.git

Alternatively, go to https://github.com/winnipegrb/winnivote, fork it, and clone your own copy

Using Vagrant (optional)

  1. Install VirtualBox
  2. Install Vagrant
  3. Update submodules git submodule update --init --recursive
  4. Run vagrant up
  5. vagrant ssh
  6. cd /vagrant

Configuring the app and running it

bundle install
bundle exec rake db:migrate
bundle exec rails s

Running the tests

  1. Install PhantomJS. It is a pre-requisite to running the feature specs.
  2. Run: bundle install to install all the gems for the project.
  3. Run: bundle exec rake db:migrate && bundle exec rake db:test:prepare to set up the test database.
  4. Run: mkdir -p tmp/cache
  5. Run: bundle exec rspec to run all the tests.

About

Winnivote is a website to submit topics/ideas and vote to show which ones are more popular

License:MIT License


Languages

Language:Ruby 87.8%Language:CoffeeScript 8.1%Language:CSS 3.0%Language:JavaScript 1.0%