simplecov 0.9.0 → 0.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +1 -7
- data/CHANGELOG.md +10 -1
- data/CONTRIBUTING.md +18 -12
- data/Gemfile +21 -14
- data/README.md +38 -28
- data/Rakefile +0 -2
- data/lib/simplecov/defaults.rb +1 -1
- data/lib/simplecov/version.rb +1 -1
- data/simplecov.gemspec +1 -7
- data/test/helper.rb +0 -4
- metadata +6 -79
- data/Appraisals +0 -8
- data/gemfiles/multi_json_legacy.gemfile +0 -13
- data/gemfiles/multi_json_new.gemfile +0 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1d7e3a8ebe11da1e5ebea51e82ade251403405c9
|
4
|
+
data.tar.gz: 17db52c7595929742df4a51234ec27752b8e710e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 914e57ef6d9c4c74151e4e058bf491933ea279278c7780a81bdc4587a46dd5a0c53b7ba2c8e057729fda2803c03eb83f7f32e2bc87eaa0cfbef36aa64161c95e
|
7
|
+
data.tar.gz: 789409593bde254e7b33986c9a0c8fd1ae362319445abeb28f7c04857e1c7681ecdcf8e1b7829e61a4013927e42b9965b758c7eba823d1ecf8fe8d7e23146c18
|
data/.travis.yml
CHANGED
@@ -1,8 +1,6 @@
|
|
1
1
|
language: ruby
|
2
|
-
gemfile:
|
3
|
-
- gemfiles/multi_json_legacy.gemfile
|
4
|
-
- gemfiles/multi_json_new.gemfile
|
5
2
|
rvm:
|
3
|
+
- 1.8.7
|
6
4
|
- 1.9.3
|
7
5
|
- 2.0.0
|
8
6
|
- 2.1
|
@@ -15,7 +13,3 @@ matrix:
|
|
15
13
|
- rvm: jruby
|
16
14
|
- rvm: rbx-2
|
17
15
|
fast_finish: true
|
18
|
-
notifications:
|
19
|
-
email:
|
20
|
-
on_success: always
|
21
|
-
on_failure: always
|
data/CHANGELOG.md
CHANGED
@@ -1,11 +1,20 @@
|
|
1
|
-
Unreleased ([changes](https://github.com/colszowka/simplecov/compare/v0.9.
|
1
|
+
Unreleased ([changes](https://github.com/colszowka/simplecov/compare/v0.9.1...master))
|
2
2
|
====================
|
3
3
|
|
4
4
|
## Enhancements
|
5
5
|
|
6
|
+
## Bugfixes
|
7
|
+
|
8
|
+
|
9
|
+
0.9.1, 2014-09-21 ([changes](https://github.com/colszowka/simplecov/compare/v0.9.0...v0.9.1))
|
10
|
+
====================
|
6
11
|
|
7
12
|
## Bugfixes
|
8
13
|
|
14
|
+
* In 0.9.0, we introduced a regression that made SimpleCov no-op mode fail on Ruby 1.8, while
|
15
|
+
dropping 1.8 support altogether is announced only for v1.0. This has been fixed.
|
16
|
+
See [#333](https://github.com/colszowka/simplecov/issues/333) (thanks (@sferik)
|
17
|
+
|
9
18
|
|
10
19
|
0.9.0, 2014-07-17 ([changes](https://github.com/colszowka/simplecov/compare/v0.8.2...v0.9.0))
|
11
20
|
====================
|
data/CONTRIBUTING.md
CHANGED
@@ -2,16 +2,26 @@
|
|
2
2
|
|
3
3
|
You can report issues at https://github.com/colszowka/simplecov/issues
|
4
4
|
|
5
|
-
|
6
|
-
|
7
|
-
please specify in your report why you can't update to the latest version.
|
5
|
+
Search existing issues for your problem, chances are someone else already reported it.
|
6
|
+
|
8
7
|
* Include the SimpleCov version you are running in your report.
|
9
|
-
*
|
10
|
-
|
11
|
-
|
8
|
+
* If you are not running the latest version (please check), and you cannot update it,
|
9
|
+
please specify in your report why you can't update to the latest version.
|
10
|
+
* Include your `ruby -e "puts RUBY_DESCRIPTION"`.
|
11
|
+
* Please also specify the gem versions of Rails (if applicable).
|
12
|
+
* Include any other coverage gems you may be using and their versions.
|
13
|
+
* Include how you run your tests and which testing framework or frameworks you are running.
|
14
|
+
- If running via rake, please ensure you are requiring SimpleCov at the top of your Rakefile
|
15
|
+
- Otherwise, please ensure you are requiring and starting SimpleCov before requiring any application code.
|
16
|
+
For example, if running via RSpec, this would be at the top of your spec_helper.
|
17
|
+
- Have you tried using a [`.simplecov` file](https://github.com/colszowka/simplecov#using-simplecov-for-centralized-config)?
|
18
|
+
|
19
|
+
Include as much sample code as you can to help us reproduce the issue. (Inline, repo link, or gist, are fine. A failing test would help the most.)
|
20
|
+
|
21
|
+
This is extremely important for narrowing down the cause of your problem.
|
12
22
|
|
13
23
|
Thanks!
|
14
|
-
|
24
|
+
|
15
25
|
## Making Contributions
|
16
26
|
|
17
27
|
To fetch & test the library for development, do:
|
@@ -19,11 +29,7 @@ To fetch & test the library for development, do:
|
|
19
29
|
$ git clone https://github.com/colszowka/simplecov.git
|
20
30
|
$ cd simplecov
|
21
31
|
$ bundle
|
22
|
-
$ rake
|
23
|
-
$ rake appraisal
|
24
|
-
|
25
|
-
For more information on the appraisal gem (for testing against multiple gem dependency versions), please see
|
26
|
-
https://github.com/thoughtbot/appraisal/
|
32
|
+
$ bundle exec rake
|
27
33
|
|
28
34
|
If you want to contribute, please:
|
29
35
|
|
data/Gemfile
CHANGED
@@ -1,20 +1,27 @@
|
|
1
|
-
source
|
2
|
-
gemspec
|
3
|
-
|
4
|
-
if 'Integration test (cucumber) suite is 1.9+ only'.respond_to? :encoding
|
5
|
-
gem 'aruba', '~> 0.6'
|
6
|
-
gem 'capybara', '~> 2.0'
|
7
|
-
gem 'poltergeist', '~> 1.1.0'
|
8
|
-
gem 'phantomjs', '~> 1.9'
|
9
|
-
gem 'cucumber', '~> 1.1'
|
10
|
-
end
|
11
|
-
|
12
|
-
# shoulda-matchers depends on rails >= 4, but that does not work with Ruby < 1.9. So, to allow CI builds on those versions,
|
13
|
-
# we gotta stick with the 3.x line.
|
14
|
-
gem 'activesupport', '~> 3.2.0'
|
1
|
+
source 'https://rubygems.org'
|
15
2
|
|
16
3
|
# Uncomment this to use local copy of simplecov-html in development when checked out
|
17
4
|
# gem 'simplecov-html', :path => ::File.dirname(__FILE__) + '/../simplecov-html'
|
18
5
|
|
19
6
|
# Uncomment this to use development version of html formatter from github
|
20
7
|
# gem 'simplecov-html', :github => 'colszowka/simplecov-html'
|
8
|
+
|
9
|
+
gemspec
|
10
|
+
|
11
|
+
gem 'rake', '>= 10.3'
|
12
|
+
|
13
|
+
group :test do
|
14
|
+
gem 'activesupport', '~> 3.2.0' # Older version required for Ruby 1.8.7 support
|
15
|
+
gem 'rspec', '>= 3.0'
|
16
|
+
gem 'rspec-legacy_formatters', '>= 1.0'
|
17
|
+
gem 'shoulda', '>= 3.5'
|
18
|
+
gem 'shoulda-matchers', '~> 2.0.0' # Older version required for Ruby 1.8.7 support
|
19
|
+
end
|
20
|
+
|
21
|
+
if 'Integration test (cucumber) suite is 1.9+ only'.respond_to?(:encoding)
|
22
|
+
gem 'aruba', '~> 0.6'
|
23
|
+
gem 'capybara', '~> 2.0.0'
|
24
|
+
gem 'poltergeist', '~> 1.1'
|
25
|
+
gem 'phantomjs', '~> 1.9'
|
26
|
+
gem 'cucumber', '~> 1.1'
|
27
|
+
end
|
data/README.md
CHANGED
@@ -25,19 +25,29 @@ SimpleCov [
|
|
25
25
|
|
26
26
|
[][Pledgie]
|
27
27
|
|
28
|
-
SimpleCov is a code coverage analysis tool for Ruby. It uses [
|
29
|
-
coverage data, but makes processing its results much easier by providing a clean API to filter, group, merge, format
|
30
|
-
and display those results,
|
28
|
+
SimpleCov is a code coverage analysis tool for Ruby. It uses [Ruby's built-in Coverage][Coverage] library to gather code
|
29
|
+
coverage data, but makes processing its results much easier by providing a clean API to filter, group, merge, format,
|
30
|
+
and display those results, giving you a complete code coverage suite that can be set up with just a couple lines of
|
31
31
|
code.
|
32
32
|
|
33
|
-
In most cases, you'll want overall coverage results for your projects, including all types of tests,
|
34
|
-
etc. SimpleCov automatically takes care of this by caching and
|
33
|
+
In most cases, you'll want overall coverage results for your projects, including all types of tests, Cucumber features,
|
34
|
+
etc. SimpleCov automatically takes care of this by caching and merging results when generating reports, so your
|
35
35
|
report actually includes coverage across your test suites and thereby gives you a better picture of blank spots.
|
36
36
|
|
37
|
-
The official formatter of SimpleCov is packaged as a separate gem called [simplecov-html] but will be installed and configured
|
37
|
+
The official formatter of SimpleCov is packaged as a separate gem called [simplecov-html], but will be installed and configured
|
38
38
|
automatically when you launch SimpleCov. If you're curious, you can find it [on Github, too][simplecov-html].
|
39
39
|
|
40
40
|
|
41
|
+
## Contact
|
42
|
+
|
43
|
+
*Code and Bug Reports*
|
44
|
+
|
45
|
+
* [Issue Tracker](https://github.com/colszowka/simplecov/issues)
|
46
|
+
* See [CONTRIBUTING](https://github.com/colszowka/simplecov/blob/master/CONTRIBUTING.md) for how to contribute along with some common problems to check out before creating an issue.
|
47
|
+
|
48
|
+
*Questions, Problems, Suggestions, etc.*
|
49
|
+
|
50
|
+
* [Mailing List]: https://groups.google.com/forum/#!forum/simplecov "Open mailing list for discussion and announcements on Google Groups"
|
41
51
|
|
42
52
|
Getting started
|
43
53
|
---------------
|
@@ -81,8 +91,8 @@ end
|
|
81
91
|
|
82
92
|
coverage
|
83
93
|
|
84
|
-
If you're making a Rails application, SimpleCov comes with
|
85
|
-
|
94
|
+
If you're making a Rails application, SimpleCov comes with built-in configurations (see below for information on profiles)
|
95
|
+
that will get you started with groups for your Controllers, Views, Models and Helpers. To use it, the first two lines of
|
86
96
|
your test_helper should be like this:
|
87
97
|
|
88
98
|
```ruby
|
@@ -105,7 +115,7 @@ SimpleCov.start 'rails'
|
|
105
115
|
|
106
116
|
## Use it with any framework!
|
107
117
|
|
108
|
-
Similarly to the usage with Test::Unit described above, the only thing you have to do is to add the
|
118
|
+
Similarly to the usage with Test::Unit described above, the only thing you have to do is to add the SimpleCov
|
109
119
|
config to the very top of your Cucumber/RSpec/whatever setup file.
|
110
120
|
|
111
121
|
Add the setup code to the **top** of `features/support/env.rb` (for Cucumber) or `spec/spec_helper.rb` (for RSpec).
|
@@ -117,7 +127,7 @@ SimpleCov.start 'rails'
|
|
117
127
|
```
|
118
128
|
|
119
129
|
You could even track what kind of code your UI testers are touching if you want to go overboard with things. SimpleCov does not
|
120
|
-
care what kind of framework it is running in
|
130
|
+
care what kind of framework it is running in; it just looks at what code is being executed and generates a report about it.
|
121
131
|
|
122
132
|
### Notes on specific frameworks and test utilities
|
123
133
|
|
@@ -131,7 +141,7 @@ to use SimpleCov with them. Here's an overview of the known ones:
|
|
131
141
|
<b>Test/Unit 2</b>
|
132
142
|
</td>
|
133
143
|
<td>
|
134
|
-
Test Unit 2 used to mess with ARGV, leading to failure to detect the test process name in SimpleCov.
|
144
|
+
Test Unit 2 used to mess with ARGV, leading to a failure to detect the test process name in SimpleCov.
|
135
145
|
<code>test-unit</code> releases 2.4.3+ (Dec 11th, 2011) should have this problem resolved.
|
136
146
|
</td>
|
137
147
|
<td>
|
@@ -144,7 +154,7 @@ to use SimpleCov with them. Here's an overview of the known ones:
|
|
144
154
|
<b>Spork</b>
|
145
155
|
</td>
|
146
156
|
<td>
|
147
|
-
Because of how Spork works internally (using preforking) there used to be trouble when using SimpleCov
|
157
|
+
Because of how Spork works internally (using preforking), there used to be trouble when using SimpleCov
|
148
158
|
with it, but that has apparently been resolved with a specific configuration strategy. See
|
149
159
|
<a href="https://github.com/colszowka/simplecov/issues/42#issuecomment-4440284">this</a> comment.
|
150
160
|
</td>
|
@@ -172,7 +182,7 @@ to use SimpleCov with them. Here's an overview of the known ones:
|
|
172
182
|
</td>
|
173
183
|
<td>
|
174
184
|
A user has reported problems with the coverage report using the riot framework. If you experience
|
175
|
-
similar trouble please follow up on the related
|
185
|
+
similar trouble please follow up on the related GitHub issue.
|
176
186
|
</td>
|
177
187
|
<td>
|
178
188
|
<a href="https://github.com/colszowka/simplecov/issues/80">SimpleCov #80</a>
|
@@ -248,7 +258,7 @@ Filters can be used to remove selected files from your coverage data. By default
|
|
248
258
|
OUTSIDE of your project's root directory - otherwise you'd end up with billions of coverage reports for source files in the
|
249
259
|
gems you are using.
|
250
260
|
|
251
|
-
|
261
|
+
You can define your own to remove things like configuration files, tests or whatever you don't need in your coverage
|
252
262
|
report.
|
253
263
|
|
254
264
|
### Defining custom filters
|
@@ -332,8 +342,8 @@ end
|
|
332
342
|
|
333
343
|
## Groups
|
334
344
|
|
335
|
-
You can separate your source files into groups. For example, in a
|
336
|
-
Models, Controllers, Helpers, and Libs. Group definition works
|
345
|
+
You can separate your source files into groups. For example, in a Rails app, you'll want to have separate listings for
|
346
|
+
Models, Controllers, Helpers, and Libs. Group definition works similarly to Filters (and also accepts custom
|
337
347
|
filter classes), but source files end up in a group when the filter passes (returns true), as opposed to filtering results,
|
338
348
|
which exclude files from results when the filter results in a true value.
|
339
349
|
|
@@ -352,10 +362,10 @@ end
|
|
352
362
|
|
353
363
|
## Merging results
|
354
364
|
|
355
|
-
|
365
|
+
You normally want to have your coverage analyzed across ALL of your test suites, right?
|
356
366
|
|
357
367
|
Simplecov automatically caches coverage results in your (coverage_path)/.resultset.json. Those results will then
|
358
|
-
be automatically merged when generating the result, so when coverage is set up properly for
|
368
|
+
be automatically merged when generating the result, so when coverage is set up properly for Cucumber and your
|
359
369
|
unit / functional / integration tests, all of those test suites will be taken into account when building the
|
360
370
|
coverage report.
|
361
371
|
|
@@ -363,15 +373,15 @@ There are two things to note here though:
|
|
363
373
|
|
364
374
|
### Test suite names
|
365
375
|
|
366
|
-
|
367
|
-
on. This should work fine for Unit Tests, RSpec and Cucumber. If it fails, it will use the shell command
|
376
|
+
SimpleCov tries to guess the name of the currently running test suite based upon the shell command the tests are running
|
377
|
+
on. This should work fine for Unit Tests, RSpec, and Cucumber. If it fails, it will use the shell command
|
368
378
|
that invoked the test suite as a command name.
|
369
379
|
|
370
|
-
If you have some non-standard setup and still want nicely labeled test suites, you have to give Simplecov a cue what the
|
380
|
+
If you have some non-standard setup and still want nicely labeled test suites, you have to give Simplecov a cue as to what the
|
371
381
|
name of the currently running test suite is. You can do so by specifying SimpleCov.command_name in one test file that is
|
372
382
|
part of your specific suite.
|
373
383
|
|
374
|
-
|
384
|
+
To customize the suite names on a Rails app (yeah, sorry for being Rails-biased, but everyone knows what
|
375
385
|
the structure of those projects is. You can apply this accordingly to the RSpecs in your Outlook-WebDAV-Calendar-Sync gem),
|
376
386
|
you could do something like this:
|
377
387
|
|
@@ -390,7 +400,7 @@ SimpleCov.command_name "features"
|
|
390
400
|
```
|
391
401
|
|
392
402
|
Note that this only has to be invoked ONCE PER TEST SUITE, so even if you have 200 unit test files, specifying it in
|
393
|
-
some_test.rb is
|
403
|
+
some_test.rb is enough.
|
394
404
|
|
395
405
|
[simplecov-html] prints the used test suites in the footer of the generated coverage report.
|
396
406
|
|
@@ -427,8 +437,8 @@ COVERAGE=true rake test
|
|
427
437
|
|
428
438
|
## Profiles
|
429
439
|
|
430
|
-
By default,
|
431
|
-
root. To save
|
440
|
+
By default, SimpleCov's only config assumption is that you only want coverage reports for files inside your project
|
441
|
+
root. To save yourself from repetitive configuration, you can use predefined blocks of configuration, called 'profiles',
|
432
442
|
or define your own.
|
433
443
|
|
434
444
|
You can then pass the name of the profile to be used as the first argument to SimpleCov.start. For example, simplecov
|
@@ -446,7 +456,7 @@ SimpleCov.profiles.define 'rails' do
|
|
446
456
|
end
|
447
457
|
```
|
448
458
|
|
449
|
-
As you can see, it's just a SimpleCov.configure block. In your test_helper.rb, launch
|
459
|
+
As you can see, it's just a SimpleCov.configure block. In your test_helper.rb, launch SimpleCov with:
|
450
460
|
|
451
461
|
```ruby
|
452
462
|
SimpleCov.start 'rails'
|
@@ -463,7 +473,7 @@ end
|
|
463
473
|
### Custom profiles
|
464
474
|
|
465
475
|
You can load additional profiles with the SimpleCov.load_profile('xyz') method. This allows you to build upon an existing
|
466
|
-
profile and customize it so you can reuse it in unit tests and
|
476
|
+
profile and customize it so you can reuse it in unit tests and Cucumber features. For example:
|
467
477
|
|
468
478
|
```ruby
|
469
479
|
# lib/simplecov_custom_profile.rb
|
@@ -485,7 +495,7 @@ SimpleCov.start 'myprofile'
|
|
485
495
|
|
486
496
|
## Customizing exit behaviour
|
487
497
|
|
488
|
-
You can define what
|
498
|
+
You can define what SimpleCov should do when your test suite finishes by customizing the at_exit hook:
|
489
499
|
|
490
500
|
```ruby
|
491
501
|
SimpleCov.at_exit do
|
data/Rakefile
CHANGED
@@ -2,7 +2,6 @@
|
|
2
2
|
|
3
3
|
require 'rubygems'
|
4
4
|
require 'bundler/setup'
|
5
|
-
require 'appraisal'
|
6
5
|
Bundler::GemHelper.install_tasks
|
7
6
|
|
8
7
|
# See https://github.com/colszowka/simplecov/issues/171
|
@@ -29,4 +28,3 @@ if '1.9+'.respond_to? :encoding
|
|
29
28
|
else
|
30
29
|
task :default => [:test]
|
31
30
|
end
|
32
|
-
|
data/lib/simplecov/defaults.rb
CHANGED
@@ -84,7 +84,7 @@ end
|
|
84
84
|
|
85
85
|
# Autoload config from ~/.simplecov if present
|
86
86
|
require 'etc'
|
87
|
-
home_dir =
|
87
|
+
home_dir = File.expand_path('~') || Etc.getpwuid.dir || (user = ENV["USER"] && File.expand_path("~#{user}"))
|
88
88
|
if home_dir
|
89
89
|
global_config_path = File.join(home_dir, '.simplecov')
|
90
90
|
load global_config_path if File.exist?(global_config_path)
|
data/lib/simplecov/version.rb
CHANGED
data/simplecov.gemspec
CHANGED
@@ -13,16 +13,10 @@ Gem::Specification.new do |gem|
|
|
13
13
|
gem.summary = gem.description
|
14
14
|
gem.license = "MIT"
|
15
15
|
|
16
|
-
gem.add_dependency 'multi_json'
|
16
|
+
gem.add_dependency 'multi_json', '~> 1.0'
|
17
17
|
gem.add_dependency 'simplecov-html', '~> 0.8.0'
|
18
18
|
gem.add_dependency 'docile', '~> 1.1.0'
|
19
19
|
|
20
|
-
gem.add_development_dependency 'appraisal', '~> 1.0'
|
21
|
-
gem.add_development_dependency 'rake', '~> 10.3'
|
22
|
-
gem.add_development_dependency 'rspec', '~> 3.0'
|
23
|
-
gem.add_development_dependency 'rspec-legacy_formatters', '~> 1.0'
|
24
|
-
gem.add_development_dependency 'shoulda', '~> 3.5'
|
25
|
-
|
26
20
|
gem.files = `git ls-files`.split("\n")
|
27
21
|
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
28
22
|
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
data/test/helper.rb
CHANGED
@@ -9,10 +9,6 @@ class Test::Unit::TestCase
|
|
9
9
|
def source_fixture(filename)
|
10
10
|
File.expand_path(File.join(File.dirname(__FILE__), 'fixtures', filename))
|
11
11
|
end
|
12
|
-
|
13
|
-
# Keep 1.8-rubies from complaining about missing tests in each file that covers only 1.9 functionality
|
14
|
-
def default_test
|
15
|
-
end
|
16
12
|
end
|
17
13
|
|
18
14
|
require 'shoulda_macros'
|
metadata
CHANGED
@@ -1,29 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: simplecov
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Christoph Olszowka
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-09-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: multi_json
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0'
|
19
|
+
version: '1.0'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - "
|
24
|
+
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '0'
|
26
|
+
version: '1.0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: simplecov-html
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -52,76 +52,6 @@ dependencies:
|
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: 1.1.0
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
name: appraisal
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - "~>"
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: '1.0'
|
62
|
-
type: :development
|
63
|
-
prerelease: false
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
65
|
-
requirements:
|
66
|
-
- - "~>"
|
67
|
-
- !ruby/object:Gem::Version
|
68
|
-
version: '1.0'
|
69
|
-
- !ruby/object:Gem::Dependency
|
70
|
-
name: rake
|
71
|
-
requirement: !ruby/object:Gem::Requirement
|
72
|
-
requirements:
|
73
|
-
- - "~>"
|
74
|
-
- !ruby/object:Gem::Version
|
75
|
-
version: '10.3'
|
76
|
-
type: :development
|
77
|
-
prerelease: false
|
78
|
-
version_requirements: !ruby/object:Gem::Requirement
|
79
|
-
requirements:
|
80
|
-
- - "~>"
|
81
|
-
- !ruby/object:Gem::Version
|
82
|
-
version: '10.3'
|
83
|
-
- !ruby/object:Gem::Dependency
|
84
|
-
name: rspec
|
85
|
-
requirement: !ruby/object:Gem::Requirement
|
86
|
-
requirements:
|
87
|
-
- - "~>"
|
88
|
-
- !ruby/object:Gem::Version
|
89
|
-
version: '3.0'
|
90
|
-
type: :development
|
91
|
-
prerelease: false
|
92
|
-
version_requirements: !ruby/object:Gem::Requirement
|
93
|
-
requirements:
|
94
|
-
- - "~>"
|
95
|
-
- !ruby/object:Gem::Version
|
96
|
-
version: '3.0'
|
97
|
-
- !ruby/object:Gem::Dependency
|
98
|
-
name: rspec-legacy_formatters
|
99
|
-
requirement: !ruby/object:Gem::Requirement
|
100
|
-
requirements:
|
101
|
-
- - "~>"
|
102
|
-
- !ruby/object:Gem::Version
|
103
|
-
version: '1.0'
|
104
|
-
type: :development
|
105
|
-
prerelease: false
|
106
|
-
version_requirements: !ruby/object:Gem::Requirement
|
107
|
-
requirements:
|
108
|
-
- - "~>"
|
109
|
-
- !ruby/object:Gem::Version
|
110
|
-
version: '1.0'
|
111
|
-
- !ruby/object:Gem::Dependency
|
112
|
-
name: shoulda
|
113
|
-
requirement: !ruby/object:Gem::Requirement
|
114
|
-
requirements:
|
115
|
-
- - "~>"
|
116
|
-
- !ruby/object:Gem::Version
|
117
|
-
version: '3.5'
|
118
|
-
type: :development
|
119
|
-
prerelease: false
|
120
|
-
version_requirements: !ruby/object:Gem::Requirement
|
121
|
-
requirements:
|
122
|
-
- - "~>"
|
123
|
-
- !ruby/object:Gem::Version
|
124
|
-
version: '3.5'
|
125
55
|
description: Code coverage for Ruby 1.9+ with a powerful configuration library and
|
126
56
|
automatic merging of coverage across test suites
|
127
57
|
email:
|
@@ -134,7 +64,6 @@ files:
|
|
134
64
|
- ".rspec"
|
135
65
|
- ".travis.yml"
|
136
66
|
- ".yardopts"
|
137
|
-
- Appraisals
|
138
67
|
- CHANGELOG.md
|
139
68
|
- CONTRIBUTING.md
|
140
69
|
- Gemfile
|
@@ -175,8 +104,6 @@ files:
|
|
175
104
|
- features/test_unit_groups_using_filter_class.feature
|
176
105
|
- features/test_unit_without_simplecov.feature
|
177
106
|
- features/unicode_compatiblity.feature
|
178
|
-
- gemfiles/multi_json_legacy.gemfile
|
179
|
-
- gemfiles/multi_json_new.gemfile
|
180
107
|
- lib/simplecov.rb
|
181
108
|
- lib/simplecov/command_guesser.rb
|
182
109
|
- lib/simplecov/configuration.rb
|
data/Appraisals
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
# This file was generated by Appraisal
|
2
|
-
|
3
|
-
source "https://rubygems.org"
|
4
|
-
|
5
|
-
gem "aruba", "~> 0.6"
|
6
|
-
gem "capybara", "~> 2.0"
|
7
|
-
gem "poltergeist", "~> 1.1.0"
|
8
|
-
gem "phantomjs", "~> 1.9"
|
9
|
-
gem "cucumber", "~> 1.1"
|
10
|
-
gem "activesupport", "~> 3.2.0"
|
11
|
-
gem "multi_json", "~> 1.0.0"
|
12
|
-
|
13
|
-
gemspec :path => "../"
|
@@ -1,13 +0,0 @@
|
|
1
|
-
# This file was generated by Appraisal
|
2
|
-
|
3
|
-
source "https://rubygems.org"
|
4
|
-
|
5
|
-
gem "aruba", "~> 0.6"
|
6
|
-
gem "capybara", "~> 2.0"
|
7
|
-
gem "poltergeist", "~> 1.1.0"
|
8
|
-
gem "phantomjs", "~> 1.9"
|
9
|
-
gem "cucumber", "~> 1.1"
|
10
|
-
gem "activesupport", "~> 3.2.0"
|
11
|
-
gem "multi_json", ">= 1.3.4"
|
12
|
-
|
13
|
-
gemspec :path => "../"
|