Skip to content

Commit

Permalink
Add coveralls.io configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
tdg5 committed Sep 23, 2013
1 parent a2f1f8e commit 809ba7d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
6 changes: 5 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,8 @@ group :development do
gem 'redcarpet', '~> 1'
gem 'github-markup'
gem 'yard'
end
end

group :development, :test do
gem 'coveralls', :require => false
end
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Beaneater
[![Build Status](https://secure.travis-ci.org/beanstalkd/beaneater.png)](http://travis-ci.org/beanstalkd/beaneater)
[![Coverage Status](https://coveralls.io/repos/beanstalkd/beaneater/badge.png?branch=master)](https://coveralls.io/r/beanstalkd/beaneater)

Beaneater is the best way to interact with beanstalkd from within Ruby.
[Beanstalkd](http://kr.github.com/beanstalkd/) is a simple, fast work queue. Its interface is generic, but was
Expand Down
4 changes: 3 additions & 1 deletion test/test_helper.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
ENV["TEST"] = 'true'
require 'rubygems'
require 'coveralls'
Coveralls.wear!
require 'minitest/autorun'
$:.unshift File.expand_path("../../lib")
require 'beaneater'
Expand All @@ -17,4 +19,4 @@ def cleanup_tubes!(tubes, bp=nil)
bp.tubes.find(name).clear
end
end
end
end

0 comments on commit 809ba7d

Please sign in to comment.