diff --git a/.coveralls.yml b/.coveralls.yml new file mode 100644 index 0000000..6e64999 --- /dev/null +++ b/.coveralls.yml @@ -0,0 +1 @@ +service_name: travis-ci \ No newline at end of file diff --git a/Gemfile b/Gemfile index 9c2de28..6b289c9 100644 --- a/Gemfile +++ b/Gemfile @@ -6,6 +6,8 @@ gem 'vcr' gem 'webmock' gem 'addressable' gem 'dotenv' +gem "coveralls", require: false +gem "simplecov" # Specify your gem's dependencies in gopay-ruby.gemspec gemspec diff --git a/README.md b/README.md index 1295984..448015d 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,6 @@ [![Gem Version](https://badge.fury.io/rb/gopay-ruby.png)](http://badge.fury.io/rb/gopay-ruby) [![Build Status](https://travis-ci.org/PrimeHammer/gopay-ruby.png?branch=master)](https://travis-ci.org/PrimeHammer/gopay-ruby) -[![Dependency Status](https://gemnasium.com/PrimeHammer/gopay-ruby.png)](https://gemnasium.com/PrimeHammer/gopay-ruby) [![Code Climate](https://codeclimate.com/github/PrimeHammer/gopay-ruby.png)](https://codeclimate.com/github/PrimeHammer/gopay-ruby) The GoPay Ruby allows Ruby applications to access to the GoPay REST API. diff --git a/gopay.gemspec b/gopay.gemspec index 66dbc46..d774879 100644 --- a/gopay.gemspec +++ b/gopay.gemspec @@ -8,7 +8,6 @@ Gem::Specification.new do |spec| spec.version = GoPay::Version spec.authors = ["David Hrachovy & Ondrej Zadnik"] spec.email = ["david.hrachovy@gmail.com"] - spec.summary = %q{Unofficial wrapper for GoPay REST API} spec.description = %q{Unofficial wrapper for GoPay REST API} spec.homepage = "https://github.com/PrimeHammer/gopay-ruby" diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 439f3fd..914f7be 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,4 +1,7 @@ -$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) +require 'simplecov' +require 'coveralls' +SimpleCov.start +Coveralls.wear! require 'dotenv/load' require 'vcr'