utils 0.51.1 → 0.52.0
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/bin/discover +8 -1
- data/lib/utils/version.rb +1 -1
- data/utils.gemspec +2 -2
- 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: dfade6a59e0995d7ee7477ccdafdbda0c14e9797a37c55d4d112f30b31fc2e76
|
4
|
+
data.tar.gz: c449da7722535dfa051df409388554840e5c146249a06f4bf2b758aada7d492c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 588351709d351fe808643d54adf8afa17f89235650bbd54d645fe7a4977c6a31eaedd6fe3b4d0c84907d487e019b098ed6020307c08f327fe5f249c3c6298e6e
|
7
|
+
data.tar.gz: 04ea3235073f97bf229be082680eadfa366315bc8ea4bba8230808bc87679e82ea40b9b63575f5a7a90e39f2c3ad817e41f00717c8fbccd12959ecd9c98d6af4
|
data/bin/discover
CHANGED
@@ -6,6 +6,7 @@ require 'tins/xt'
|
|
6
6
|
include Tins::GO
|
7
7
|
require 'search_ui'
|
8
8
|
include SearchUI
|
9
|
+
require 'pathname'
|
9
10
|
|
10
11
|
def edit_files(*paths, pick: false, wait: true)
|
11
12
|
editor = Utils::Editor.new
|
@@ -46,6 +47,8 @@ Options are
|
|
46
47
|
-v be verbose
|
47
48
|
-n NUMBER the first NUMBER of matches is returned
|
48
49
|
-s search by interactively inputting PATTERN
|
50
|
+
-l list all paths in cache relative to current directory
|
51
|
+
-L list all paths in cahce as absolute pathes from root
|
49
52
|
-h display this help
|
50
53
|
|
51
54
|
Version is #{File.basename($0)} #{Utils::VERSION}.
|
@@ -53,7 +56,7 @@ Version is #{File.basename($0)} #{Utils::VERSION}.
|
|
53
56
|
exit 1
|
54
57
|
end
|
55
58
|
|
56
|
-
args = go 'n:I:i:a:p:
|
59
|
+
args = go 'n:I:i:a:p:lLcreEvdsDh', defaults: { ?a => '\\w' }
|
57
60
|
args[?h] and usage
|
58
61
|
|
59
62
|
Term::ANSIColor.coloring = (STDIN.tty? && ENV['TERM'] !~ /dumb/) && !args[?c]
|
@@ -112,6 +115,10 @@ search = -> * {
|
|
112
115
|
|
113
116
|
case
|
114
117
|
when args[?l]
|
118
|
+
puts finder.().search_index.paths.map {
|
119
|
+
Pathname.new(_1).expand_path.relative_path_from(Dir.pwd)
|
120
|
+
}
|
121
|
+
when args[?L]
|
115
122
|
puts finder.().search_index.paths
|
116
123
|
when args[?s]
|
117
124
|
search.()
|
data/lib/utils/version.rb
CHANGED
data/utils.gemspec
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
|
-
# stub: utils 0.
|
2
|
+
# stub: utils 0.52.0 ruby lib
|
3
3
|
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = "utils".freeze
|
6
|
-
s.version = "0.
|
6
|
+
s.version = "0.52.0".freeze
|
7
7
|
|
8
8
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
9
9
|
s.require_paths = ["lib".freeze]
|