harri 0.1.7 → 0.1.8
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/Gemfile.lock +1 -1
- data/lib/harri/regexes.rb +2 -6
- data/lib/harri/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 676b5f59c0afcc971b046b3c32b0787580bb5456012b95f481ccfe3746870ddd
|
|
4
|
+
data.tar.gz: be2f5cbd37312c23f2aaf73535e3912fa70baee1ed33f3c5c1882bc684425d2b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eab1ee5025d960fc602f13b2490638bf32e15b0e778fb31c4ff7bf8d3795a5ebba98c40da4b59764d5495cecc81d3d554e240a600208ee679f4601903c7bac18
|
|
7
|
+
data.tar.gz: db94cfda327cae87a4df58e38a9b29a8d6508a585abdc4ac36a4c3ef163d27c2337101b7da952c9faefdabfd43a13b471cbf4e10817893ae6ea4d45711c235f6
|
data/Gemfile.lock
CHANGED
data/lib/harri/regexes.rb
CHANGED
|
@@ -4,9 +4,7 @@ module Harri
|
|
|
4
4
|
START_ERROR_REGEX = %r{
|
|
5
5
|
(.*\.hs) # filename
|
|
6
6
|
: # literal colon
|
|
7
|
-
\d
|
|
8
|
-
: # literal colon
|
|
9
|
-
(\d+)(?:-(?:\d+:)?(\d+))? # column number, with optional span (col-endCol or col-endLine:endCol)
|
|
7
|
+
(?:[:\(\),\d-]+?) # line and column number(s), with optional parens, dashes, and colons
|
|
10
8
|
: # literal colon
|
|
11
9
|
\s # space
|
|
12
10
|
error:.* # literal "error:" with possible marker
|
|
@@ -16,9 +14,7 @@ module Harri
|
|
|
16
14
|
UNUSED_IMPORT_ERROR_REGEX = %r{
|
|
17
15
|
.*\.hs # filename
|
|
18
16
|
: # literal colon
|
|
19
|
-
\d
|
|
20
|
-
: # literal colon
|
|
21
|
-
(\d+)(?:-(?:\d+:)?(\d+))? # column number, with optional span (col-endCol or col-endLine:endCol)
|
|
17
|
+
(?:[:\(\),\d-]+?) # line and column number(s), with optional parens, dashes, and colons
|
|
22
18
|
: # literal colon
|
|
23
19
|
\s # space
|
|
24
20
|
error: # literal "error:"
|
data/lib/harri/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: harri
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- rhizomic
|
|
8
8
|
bindir: exe
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date: 2026-
|
|
10
|
+
date: 2026-04-02 00:00:00.000000000 Z
|
|
11
11
|
dependencies: []
|
|
12
12
|
description: 'Harri: HAskell Remove Redundant Imports. A way to get GHC to stop harrying
|
|
13
13
|
you about them.'
|