Add support for coveralls.io

This commit is contained in:
Olivier Bellone 2017-12-08 17:39:46 -08:00
parent bfbc4b7862
commit 56430ad405
No known key found for this signature in database
GPG Key ID: 11E77E3AA0C40303
4 changed files with 9 additions and 1 deletions

1
.gitignore vendored
View File

@ -4,3 +4,4 @@
Gemfile.lock Gemfile.lock
tags tags
/.bundle/ /.bundle/
coverage/

View File

@ -3,6 +3,7 @@ source "https://rubygems.org"
gemspec gemspec
group :development do group :development do
gem "coveralls", require: false
gem "mocha", "~> 0.13.2" gem "mocha", "~> 0.13.2"
gem "rake" gem "rake"
gem "shoulda-context" gem "shoulda-context"

View File

@ -1,4 +1,7 @@
# Stripe Ruby Library [![Build Status](https://travis-ci.org/stripe/stripe-ruby.svg?branch=master)](https://travis-ci.org/stripe/stripe-ruby) # Stripe Ruby Library
[![Build Status](https://travis-ci.org/stripe/stripe-ruby.svg?branch=master)](https://travis-ci.org/stripe/stripe-ruby)
[![Coverage Status](https://coveralls.io/repos/github/stripe/stripe-ruby/badge.svg?branch=master)](https://coveralls.io/github/stripe/stripe-ruby?branch=master)
The Stripe Ruby library provides convenient access to the Stripe API from The Stripe Ruby library provides convenient access to the Stripe API from
applications written in the Ruby language. It includes a pre-defined set of applications written in the Ruby language. It includes a pre-defined set of

View File

@ -1,3 +1,6 @@
require "coveralls"
Coveralls.wear!("test_frameworks")
require "stripe" require "stripe"
require "test/unit" require "test/unit"
require "mocha/setup" require "mocha/setup"