ae_test_coverage 1.2.0 → 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE.txt +20 -0
- data/ae_test_coverage.gemspec +20 -0
- data/lib/ae_test_coverage/version.rb +1 -1
- metadata +19 -15
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9c4500a336e607100d415975b2b7e1bbb73653db3ea676dbb3ef6f0d285069b3
|
4
|
+
data.tar.gz: 8e538a8068666d1d618762fd390eddce527d0bdb50ee6fbc1f6af842159aef46
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dc62391f7e999e9e8700ad311412cc8b0ee637f0d7932854ab37dbdb0f8d3977ab7c5521e49ae984dc0037abc827460f30c91089b0a82d5c871c05501c179038
|
7
|
+
data.tar.gz: 9657fa4b4624cd305a5e9e6ed177d1679ce37322a699e58ba114bfae95aaf67c7734e2479917f12f8af7bc6a581c432e9f46e74d2d1f9602e58ca7a9d36ff069
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2020-2022 AppFolio, Inc
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'lib/ae_test_coverage/version'
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = 'ae_test_coverage'
|
7
|
+
spec.version = AeTestCoverage::VERSION
|
8
|
+
spec.platform = Gem::Platform::RUBY
|
9
|
+
spec.author = 'AppFolio'
|
10
|
+
spec.email = 'opensource@appfolio.com'
|
11
|
+
spec.description = 'Tools for collecting code coverage from tests.'
|
12
|
+
spec.summary = spec.description
|
13
|
+
spec.homepage = 'https://github.com/appfolio/ae_test_coverage'
|
14
|
+
spec.license = 'MIT'
|
15
|
+
spec.files = Dir['**/*'].select { |f| f[%r{^(lib/|LICENSE.txt|.*gemspec)}] }
|
16
|
+
spec.require_paths = ['lib']
|
17
|
+
spec.required_ruby_version = Gem::Requirement.new('>= 2.6.3')
|
18
|
+
|
19
|
+
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
|
20
|
+
end
|
metadata
CHANGED
@@ -1,21 +1,23 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ae_test_coverage
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
8
|
-
autorequire:
|
9
|
-
bindir:
|
7
|
+
- AppFolio
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-02-23 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
|
-
description: Tools for collecting code coverage from tests
|
14
|
-
email:
|
13
|
+
description: Tools for collecting code coverage from tests.
|
14
|
+
email: opensource@appfolio.com
|
15
15
|
executables: []
|
16
16
|
extensions: []
|
17
17
|
extra_rdoc_files: []
|
18
18
|
files:
|
19
|
+
- LICENSE.txt
|
20
|
+
- ae_test_coverage.gemspec
|
19
21
|
- lib/ae_test_coverage.rb
|
20
22
|
- lib/ae_test_coverage/collectors/action_view/asset_tag_collector.rb
|
21
23
|
- lib/ae_test_coverage/collectors/action_view/asset_tag_helper.rb
|
@@ -34,10 +36,12 @@ files:
|
|
34
36
|
- lib/ae_test_coverage/collectors/webpacker/webpacker_app_collector.rb
|
35
37
|
- lib/ae_test_coverage/test_coverage_methods.rb
|
36
38
|
- lib/ae_test_coverage/version.rb
|
37
|
-
homepage:
|
38
|
-
licenses:
|
39
|
-
|
40
|
-
|
39
|
+
homepage: https://github.com/appfolio/ae_test_coverage
|
40
|
+
licenses:
|
41
|
+
- MIT
|
42
|
+
metadata:
|
43
|
+
allowed_push_host: https://rubygems.org
|
44
|
+
post_install_message:
|
41
45
|
rdoc_options: []
|
42
46
|
require_paths:
|
43
47
|
- lib
|
@@ -45,15 +49,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
45
49
|
requirements:
|
46
50
|
- - ">="
|
47
51
|
- !ruby/object:Gem::Version
|
48
|
-
version:
|
52
|
+
version: 2.6.3
|
49
53
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
50
54
|
requirements:
|
51
55
|
- - ">="
|
52
56
|
- !ruby/object:Gem::Version
|
53
57
|
version: '0'
|
54
58
|
requirements: []
|
55
|
-
rubygems_version: 3.
|
56
|
-
signing_key:
|
59
|
+
rubygems_version: 3.3.3
|
60
|
+
signing_key:
|
57
61
|
specification_version: 4
|
58
|
-
summary: Tools for collecting code coverage from tests
|
62
|
+
summary: Tools for collecting code coverage from tests.
|
59
63
|
test_files: []
|