utils 0.51.1 → 0.52.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 69e976a26229706ad310d7f05d251da8aea627e30d18f9607789c78b7d173326
4
- data.tar.gz: 65be6696f3c49aa7067736b82a24a8633770fc0a723d4131cee1210745175672
3
+ metadata.gz: dfade6a59e0995d7ee7477ccdafdbda0c14e9797a37c55d4d112f30b31fc2e76
4
+ data.tar.gz: c449da7722535dfa051df409388554840e5c146249a06f4bf2b758aada7d492c
5
5
  SHA512:
6
- metadata.gz: 9d10d1921b2efede6c397088266ea3c8fac9f234b4ad4b8e20c51e3463fb6f812de78cf79f33e45287c473e2c3df09ec6d9b4196048faf1e964b2b80de2f279a
7
- data.tar.gz: 232ec2b3329b4aeca039da85f70e57d0aa9090405b6e6b8390a3e45a7f6c8b714d1b8c0dc9d0fe76eff6998c3f8bc967935f52d0931af8b7fb3160633f5ece1a
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:lcreEvdsDh', defaults: { ?a => '\\w' }
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
@@ -1,6 +1,6 @@
1
1
  module Utils
2
2
  # Utils version
3
- VERSION = '0.51.1'
3
+ VERSION = '0.52.0'
4
4
  VERSION_ARRAY = VERSION.split('.').map(&:to_i) # :nodoc:
5
5
  VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
6
6
  VERSION_MINOR = VERSION_ARRAY[1] # :nodoc:
data/utils.gemspec CHANGED
@@ -1,9 +1,9 @@
1
1
  # -*- encoding: utf-8 -*-
2
- # stub: utils 0.51.1 ruby lib
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.51.1".freeze
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]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: utils
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.51.1
4
+ version: 0.52.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Florian Frank