Skip to content

Commit

Permalink
TL-465 Add Coveralls coverage and gemnasium badges
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Teijon committed Oct 19, 2015
1 parent 30fb384 commit cb9fcc3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
1 change: 0 additions & 1 deletion .ruby-version

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![Build Status](https://travis-ci.org/rightscale/mock_em.png)](https://travis-ci.org/rightscale/mock_em)
[![Dependency Status](https://gemnasium.com/rightscale/mock_em.svg)](https://gemnasium.com/rightscale/mock_em)
[![Code Climate](https://codeclimate.com/github/rightscale/mock_em/badges/gpa.svg)](https://codeclimate.com/github/rightscale/mock_em)
[![Test Coverage](https://codeclimate.com/github/rightscale/mock_em/badges/coverage.svg)](https://codeclimate.com/github/rightscale/mock_em)
[![Coverage Status](https://coveralls.io/repos/rightscale/mock_em/badge.svg?branch=master&service=github)](https://coveralls.io/github/rightscale/mock_em?branch=master)

MockEM provides the same interface as [EM](https://github.com/eventmachine/eventmachine/) (a.k.a. [EventMachine](https://github.com/eventmachine/eventmachine/)), but simulates the passage of time to execute your
scheduled actions without delay. It is intended for use in tests.
Expand Down
3 changes: 3 additions & 0 deletions mock_em.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,7 @@ Gem::Specification.new do |gem|
gem.add_development_dependency("rspec", '3.0.0')
gem.add_development_dependency('eventmachine', '1.0.3')
gem.add_development_dependency("simplecov", '0.9.1')
gem.add_development_dependency("coveralls")
gem.add_development_dependency("mime-types", '1.25.1')
gem.add_development_dependency("rest-client", '<=1.7.0')
end
4 changes: 2 additions & 2 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
require 'simplecov'
SimpleCov.start
require 'coveralls'
Coveralls.wear!

require 'mock_em'

Expand Down

0 comments on commit cb9fcc3

Please sign in to comment.