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 +4 -4
- data/lib/fast_cov/coverage_map.rb +1 -3
- data/lib/fast_cov/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3d41bffc0dc2cbd1cf3d92d8296c61318b544f4a53d2709868cecc7ff1013cbb
|
|
4
|
+
data.tar.gz: 75896a982a456bc9715a1f62895e295ad969afb99069e0781cb21d670ed4a4ae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
|
|
145
|
+
File.absolute_path?(path.to_s)
|
|
148
146
|
end
|
|
149
147
|
|
|
150
148
|
def normalize_path(path)
|
data/lib/fast_cov/version.rb
CHANGED