Skip to content

Commit 95eb18b

Browse files
committed
Added coveralls.
1 parent 036ee58 commit 95eb18b

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ group :development, :test do
1717
gem 'terminal-notifier-guard', require: false
1818
gem 'simplecov', require: false
1919
gem 'rubocop', require: false unless RUBY_VERSION =~ /^1.8/
20-
# gem 'coveralls'
20+
gem 'coveralls'
2121
gem 'codeclimate-test-reporter'
2222

2323
platforms :mri do

README.rdoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
{<img src="https://badge.fury.io/rb/annotate.svg" alt="Gem Version" />}[http://badge.fury.io/rb/annotate]
44
{<img src="https://img.shields.io/gem/dt/annotate.svg?style=flat" />}[https://rubygems.org/gems/annotate]
55
{<img src="https://travis-ci.org/ctran/annotate_models.png" />}[https://travis-ci.org/ctran/annotate_models]
6+
{<img src="https://coveralls.io/repos/ctran/annotate_models/badge.svg?branch=develop" />}[https://coveralls.io/r/ctran/annotate_models?branch=develop]
67
{<img src="https://codeclimate.com/github/ctran/annotate_models/badges/gpa.svg" />}[https://codeclimate.com/github/ctran/annotate_models]
78
{<img src="https://gemnasium.com/ctran/annotate_models.png" />}[https://gemnasium.com/ctran/annotate_models]
89

spec/annotate_spec.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
require File.dirname(__FILE__) + '/spec_helper.rb'
22

33
describe Annotate do
4-
54
it "should have a version" do
65
expect(Annotate.version).to be_instance_of(String)
76
end
8-
97
end

spec/spec_helper.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# require 'coveralls'
1+
require 'coveralls'
22
require 'codeclimate-test-reporter'
33
require 'simplecov'
44

55
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
6-
# Coveralls::SimpleCov::Formatter,
6+
Coveralls::SimpleCov::Formatter,
77
SimpleCov::Formatter::HTMLFormatter,
88
CodeClimate::TestReporter::Formatter
99
]

0 commit comments

Comments
 (0)