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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cfce1bfaead913e22fa5d6a1561538b9481327e7f2c1f2e3591887957682a7a0
4
- data.tar.gz: 441e0cde594a4ac7480f6220ce633e93e53ed6fece4960080c193da22497b2de
3
+ metadata.gz: 9c4500a336e607100d415975b2b7e1bbb73653db3ea676dbb3ef6f0d285069b3
4
+ data.tar.gz: 8e538a8068666d1d618762fd390eddce527d0bdb50ee6fbc1f6af842159aef46
5
5
  SHA512:
6
- metadata.gz: b5639f983c7e9ad81d0aceae4062d0c564ea781882bac27ffc652e0d8caf89ba833410a7c680657d1da87205cdd4386a50870cbe8b5b8f3ed212a0c867372131
7
- data.tar.gz: 7e2f80252c49fecbf0ca03b5bf7fdea49c04846dd162b3b5af4c31751c7f3cb58dee7f10378958217f0dd064ade3c3e40ffeabfb91a6214e0fec0172bd13fa1e
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AeTestCoverage
4
- VERSION = '1.2.0'
4
+ VERSION = '1.3.0'
5
5
  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.2.0
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
- - Appfolio
8
- autorequire:
9
- bindir: exe
7
+ - AppFolio
8
+ autorequire:
9
+ bindir: bin
10
10
  cert_chain: []
11
- date: 2021-08-26 00:00:00.000000000 Z
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
- metadata: {}
40
- post_install_message:
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: '0'
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.0.6
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: []