Skip to content

Commit

Permalink
Add Coveralls support to the unit tests
Browse files Browse the repository at this point in the history
Also added the badge to the README.
  • Loading branch information
acant committed Jul 29, 2014
1 parent 42b6c05 commit f73a7b7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ Gemfile.lock
pkg/*
.DS_Store
tmp
coverage
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@
[![Build Status](https://travis-ci.org/nesquena/gitdocs.svg?branch=master)](https://travis-ci.org/nesquena/gitdocs)
[![Inline docs](http://inch-ci.org/github/nesquena/gitdocs.png?branch=master)](http://inch-ci.org/github/nesquena/gitdocs)
[![Dependency Status](https://gemnasium.com/nesquena/gitdocs.svg)](https://gemnasium.com/nesquena/gitdocs)
[![Coverage Status](https://coveralls.io/repos/nesquena/gitdocs/badge.png?branch=master)](https://coveralls.io/r/nesquena/gitdocs)

Open-source dropbox alternative powered by git. Collaborate on files and tasks without any extra hassle.
gitdocs will automatically keep everyone's repos in sync by pushing and pulling changes.
This allows any git repo to be used as a collaborative task list, file share, or wiki for a team.
Supports a web front-end allowing each repo to be accessed through your browser.

**Note:** Gitdocs has been tested on multiple unix systems including Mac OS X and Ubuntu.
Windows support is [half-baked](https://github.com/bazaarlabs/gitdocs/issues/7)
Windows support is [half-baked](https://github.com/nesquena/gitdocs/issues/7)
but we plan to tackle that shortly in an upcoming release.

## Why?
Expand Down
1 change: 1 addition & 0 deletions gitdocs.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,5 @@ Gem::Specification.new do |s|
s.add_development_dependency 'rubocop'
s.add_development_dependency 'haml-lint', '~> 0.6.0'
s.add_development_dependency 'jslint_on_rails', '~> 1.1.1'
s.add_development_dependency 'coveralls', '~> 0.7.0'
end
3 changes: 3 additions & 0 deletions test/unit/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@
$LOAD_PATH.unshift File.expand_path('../../lib')
require 'gitdocs'
require 'mocha/setup'

require 'coveralls'
Coveralls.wear!

0 comments on commit f73a7b7

Please sign in to comment.