This repository was archived by the owner on Nov 30, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +14
-1
lines changed Expand file tree Collapse file tree 4 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,9 @@ platforms :ruby do
18
18
gem 'github-markup' , '0.7.2'
19
19
end
20
20
21
+ ### dep for ci/coverage
22
+ gem 'coveralls' , :require => false
23
+
21
24
platforms :jruby do
22
25
gem "jruby-openssl"
23
26
end
Original file line number Diff line number Diff line change 1
- # rspec-core [ ![ Build Status] ( https://secure.travis-ci.org/rspec/rspec-core.png?branch=master )] ( http://travis-ci.org/rspec/rspec-core ) [ ![ Code Climate] ( https://codeclimate.com/github/rspec/rspec-core.png )] ( https://codeclimate.com/github/rspec/rspec-core )
1
+ # rspec-core [ ![ Build Status] ( https://secure.travis-ci.org/rspec/rspec-core.png?branch=master )] ( http://travis-ci.org/rspec/rspec-core ) [ ![ Code Climate] ( https://codeclimate.com/github/rspec/rspec-core.png )] ( https://codeclimate.com/github/rspec/rspec-core ) [ ![ Coverage Status ] ( https://coveralls.io/repos/rspec/rspec-core/badge.png?branch=master )] ( https://coveralls.io/r/rspec/rspec-core?branch=master )
2
2
3
3
rspec-core provides the structure for writing executable examples of how your
4
4
code should behave, and an ` rspec ` command with tools to constrain which
Original file line number Diff line number Diff line change 12
12
end
13
13
end if RUBY_PLATFORM == 'java'
14
14
15
+ require 'coveralls'
16
+ Coveralls . wear! do
17
+ add_filter '/bundle/'
18
+ end
Original file line number Diff line number Diff line change 1
1
require 'rubygems'
2
2
3
+ require 'simplecov' if RUBY_VERSION . to_f > 1.8
4
+ require 'coveralls'
5
+ Coveralls . wear! do
6
+ add_filter '/bundle/'
7
+ end
8
+
3
9
begin
4
10
require 'spork'
5
11
rescue LoadError
You can’t perform that action at this time.
0 commit comments