fast_cov 0.2.0 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c1319e05ab0d7a740626e94ed880dacb09b980dfc0ededc6b1c0259383fb0667
4
- data.tar.gz: dd7af260d917264ab2f30affbc3dd2dfa44f5ddba03bc8d1f8dd222e29a9817e
3
+ metadata.gz: 3d41bffc0dc2cbd1cf3d92d8296c61318b544f4a53d2709868cecc7ff1013cbb
4
+ data.tar.gz: 75896a982a456bc9715a1f62895e295ad969afb99069e0781cb21d670ed4a4ae
5
5
  SHA512:
6
- metadata.gz: 6b594da4510ba6bb43767030b4d25e3f7787e22923b6e76b48616f2a085c030d22c1d870976570f7ac74fe921fe2c1eabbeeb16471ec8a533588f9d5b9974fef
7
- data.tar.gz: 98f1b25e2565a56af55e472096a4c3159110b27117b99682cd031888083ec68d5aef8788aeff7a2538af9a5287f588653f8717ee30160e1126f127a0316191ea
6
+ metadata.gz: 30a3b33ddca11202bdc7dfd138d847d0cc0d2366ba3915f57a5063e157ee756661da5599bcbd1348d2a9723cd89f6f3ed21acc57da2ea497f3005d4aed70429a
7
+ data.tar.gz: 3ac7f28ac5e49176cd7e3c8373f8b8fa5a1375fd9a2561d5d348c3081246f24c71a65b275c306a675555235d7e9caeaaaf2df4ccda83508ecc2d4f95a1c1f8cc
@@ -1,7 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "pathname"
4
-
5
3
  module FastCov
6
4
  class CoverageMap
7
5
  class ConfigurationError < StandardError; end
@@ -144,7 +142,7 @@ module FastCov
144
142
  end
145
143
 
146
144
  def absolute_path?(path)
147
- Pathname.new(path).absolute?
145
+ File.absolute_path?(path.to_s)
148
146
  end
149
147
 
150
148
  def normalize_path(path)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FastCov
4
- VERSION = "0.2.0"
4
+ VERSION = "0.2.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fast_cov
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ngan Pham