simplecov 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
metadata ADDED
@@ -0,0 +1,117 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: simplecov
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 3
8
+ - 0
9
+ version: 0.3.0
10
+ platform: ruby
11
+ authors:
12
+ - Christoph Olszowka
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2010-08-22 00:00:00 +02:00
18
+ default_executable:
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: shoulda
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - "="
27
+ - !ruby/object:Gem::Version
28
+ segments:
29
+ - 2
30
+ - 10
31
+ - 3
32
+ version: 2.10.3
33
+ type: :development
34
+ version_requirements: *id001
35
+ description: Code coverage for Ruby 1.9
36
+ email: christoph at olszowka.de
37
+ executables: []
38
+
39
+ extensions: []
40
+
41
+ extra_rdoc_files:
42
+ - LICENSE
43
+ - README.rdoc
44
+ files:
45
+ - .document
46
+ - .gitignore
47
+ - LICENSE
48
+ - README.rdoc
49
+ - Rakefile
50
+ - VERSION
51
+ - lib/simplecov.rb
52
+ - lib/simplecov/adapters.rb
53
+ - lib/simplecov/configuration.rb
54
+ - lib/simplecov/filter.rb
55
+ - lib/simplecov/formatter.rb
56
+ - lib/simplecov/formatter/simple_formatter.rb
57
+ - lib/simplecov/merge_helpers.rb
58
+ - lib/simplecov/result.rb
59
+ - lib/simplecov/result_merger.rb
60
+ - lib/simplecov/source_file.rb
61
+ - simple_cov.gemspec
62
+ - simplecov.gemspec
63
+ - test/fixtures/app/controllers/sample_controller.rb
64
+ - test/fixtures/app/models/user.rb
65
+ - test/fixtures/resultset1.rb
66
+ - test/fixtures/resultset2.rb
67
+ - test/fixtures/sample.rb
68
+ - test/helper.rb
69
+ - test/test_filters.rb
70
+ - test/test_merge_helpers.rb
71
+ - test/test_result.rb
72
+ - test/test_source_file.rb
73
+ - test/test_source_file_line.rb
74
+ has_rdoc: true
75
+ homepage: http://github.com/colszowka/simplecov
76
+ licenses: []
77
+
78
+ post_install_message:
79
+ rdoc_options:
80
+ - --charset=UTF-8
81
+ require_paths:
82
+ - lib
83
+ required_ruby_version: !ruby/object:Gem::Requirement
84
+ none: false
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ segments:
89
+ - 0
90
+ version: "0"
91
+ required_rubygems_version: !ruby/object:Gem::Requirement
92
+ none: false
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ segments:
97
+ - 0
98
+ version: "0"
99
+ requirements: []
100
+
101
+ rubyforge_project:
102
+ rubygems_version: 1.3.7
103
+ signing_key:
104
+ specification_version: 3
105
+ summary: Code coverage for Ruby 1.9
106
+ test_files:
107
+ - test/fixtures/app/controllers/sample_controller.rb
108
+ - test/fixtures/app/models/user.rb
109
+ - test/fixtures/resultset1.rb
110
+ - test/fixtures/resultset2.rb
111
+ - test/fixtures/sample.rb
112
+ - test/helper.rb
113
+ - test/test_filters.rb
114
+ - test/test_merge_helpers.rb
115
+ - test/test_result.rb
116
+ - test/test_source_file.rb
117
+ - test/test_source_file_line.rb