cknadler / gitfeats.com

git feats site

Home Page:www.gitfeats.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gitfeats.com Code Climate Build Status

A stats site for the git-feats gem.

Development

GitFeats is actively under development. Suggestions, issues and pull requests and welcomed with open arms.

Getting Started

You are going to need the following:

  • ruby 1.9.3-p194
  • postgresql
  • bundler
ruby

I recommend using rbenv, and ruby-build.

rbenv install 1.9.3-p194
rbenv global 1.9.3-p194
postgres

If you are running OSX, you can either install postgres.app or install postgresql with brew:

brew install postgresql

On Unix, install postgresql with your package manager. For example, with apt-get it would be:

sudo apt-get install postgresql
bundler
gem install bundler && rbenv rehash
bundle install
GitFeats setup

Create the database and load it with some test data:

bundle exec rake db:create:all
bundle exec rake db:migrate
bundle exec rake db:seed

Then, to get your server started:

bundle exec rails s

Now the app should be available at localhost:3000.

Tests

Tests are written in RSpec with help from Capybara. Guard is configured to autotest. Simply run:

bundle exec guard

Alternatively, to run the tests without guard, run:

bundle exec rake

Contributing

GitFeats can always use some extra attention. If you are thinking of adding a feature, refactoring some horrendous code, fixing a bug or writing some tests, have at it.

I reccomend the following:

  • Fork the project.
  • Make a feature branch: git checkout -b feature_branch
  • Make your changes.
  • Add tests.
  • Send a pull request.

If you are stuck on something, like adding tests, open a pull request anyways. I'm always more than happy to help.

Copyright

Copyright (c) 2012 Chris Knadler. See LICENSE for details.

About

git feats site

www.gitfeats.com

License:MIT License


Languages

Language:Ruby 98.7%Language:JavaScript 1.3%