harri 0.1.0 → 0.1.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: a94855b52e7d80f6cee4012850ab58e20b9a9432c8c8cd6f86885606ab0696d8
4
- data.tar.gz: f963fb0f1e3ffa283bf7fb8721ce6aa4da5783040c6c1772c2326e42d4562ec1
3
+ metadata.gz: 6e3ffcbf89ca10f9d2b47b026337f2d2e900218eedfd0695f9dd133a24c37646
4
+ data.tar.gz: d32beb0c513862b06441629a1aaccabbebe1bdfa33bfd86fd1444225cb8ddaca
5
5
  SHA512:
6
- metadata.gz: eea4d8878af6d4c0e661208909eec2450a7aace2c77bc1b32d2e9e6e81e8fd450d4ab1ec09bb478cd16ab3df9ab152397b093de8c2aa2f65ef0a542ce774869a
7
- data.tar.gz: 91fac66571b31e73139e8235af2a30d9bbf51269371e8bad9220099d9d5649122a73f9a40955c6b9ab4b41c3d264de22f5e6af6e3608c4e11e2f579d48201b3d
6
+ metadata.gz: 250f75c0b74b252b32e8e52e7ca709fef93499da6f6bac6aea8dc5ab08e7b09e71107daaeb5ca7172e0969d7c8fc442434da87a05e333eccbbf4fc4482e13f9f
7
+ data.tar.gz: 7fa279de92041a740e6f15da5aa4271acf3c4acfad01d6d3815b5cd0caf65ac78180b0b4e18a97ea1eb1bea268ed60fba3f53e52c8470a597376100252f362a9
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- harri (0.1.0)
4
+ harri (0.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/exe/harri CHANGED
@@ -5,7 +5,6 @@ $LOAD_PATH.unshift(__dir__ + "/../lib")
5
5
  require "harri"
6
6
  require "harri/version"
7
7
 
8
- require "filewatcher"
9
8
  require "optparse"
10
9
 
11
10
  class CLI
data/lib/harri/regexes.rb CHANGED
@@ -27,7 +27,7 @@ module Harri
27
27
  }x
28
28
 
29
29
  # Intended to capture the scenario when an entire module is redundant.
30
- ENTIRE_MODULE_REDUNDANT_REGEX = /The import of ‘(.+)’ is redundant except.*/
30
+ ENTIRE_MODULE_REDUNDANT_REGEX = /The(?: qualified)? import of ‘(.+)’ is redundant except.*/
31
31
 
32
32
  # Intended to capture the scenario when specific imports within a module are redundant.
33
33
  REDUNDANT_IMPORTS_WITHIN_MODULE_REGEX = /The import of ‘(.+)’ from module ‘(.+)’ is redundant.*/
data/lib/harri/version.rb CHANGED
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Harri
4
4
  module Version
5
- VERSION = "0.1.0"
5
+ VERSION = "0.1.1"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: harri
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - rhizomic
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-12-14 00:00:00.000000000 Z
11
+ date: 2023-01-28 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: 'Harri: HAskell Remove Redundant Imports. A way to get GHC to stop harrying
14
14
  you about them.'