ruby-zoom 4.7.5 → 5.0.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/z +108 -50
- data/bin/zc +108 -50
- data/bin/zf +108 -50
- data/bin/zg +108 -50
- data/bin/zl +108 -50
- data/bin/zr +108 -50
- data/lib/zoom.rb +89 -26
- data/lib/zoom/cache.rb +10 -9
- data/lib/zoom/cache/result.rb +3 -3
- data/lib/zoom/config.rb +15 -6
- data/lib/zoom/editor.rb +8 -4
- data/lib/zoom/error.rb +1 -0
- data/lib/zoom/error/regex_not_provided.rb +5 -0
- data/lib/zoom/profile.rb +62 -90
- data/lib/zoom/profile/ack.rb +35 -10
- data/lib/zoom/profile/ag.rb +21 -5
- data/lib/zoom/profile/find.rb +48 -4
- data/lib/zoom/profile/grep.rb +25 -5
- data/lib/zoom/profile/passwords.rb +5 -13
- data/lib/zoom/profile/pt.rb +21 -5
- data/lib/zoom/profile/rg.rb +51 -0
- data/lib/zoom/profile/unsafe_c.rb +32 -30
- data/lib/zoom/profile/unsafe_java.rb +15 -28
- data/lib/zoom/profile/unsafe_js.rb +5 -12
- data/lib/zoom/profile/unsafe_php.rb +48 -55
- data/lib/zoom/profile/unsafe_python.rb +16 -24
- data/lib/zoom/profile/unsafe_ruby.rb +16 -25
- data/lib/zoom/profile_manager.rb +50 -16
- data/lib/zoom/security_profile.rb +60 -5
- data/lib/zoom/wish/edit_wish.rb +4 -4
- data/lib/zoom/wish/editor_wish.rb +2 -8
- metadata +14 -12
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby-zoom
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 5.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Miles Whittaker
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-10-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: minitest
|
@@ -56,20 +56,20 @@ dependencies:
|
|
56
56
|
requirements:
|
57
57
|
- - "~>"
|
58
58
|
- !ruby/object:Gem::Version
|
59
|
-
version: '2.
|
59
|
+
version: '2.1'
|
60
60
|
- - ">="
|
61
61
|
- !ruby/object:Gem::Version
|
62
|
-
version: 2.
|
62
|
+
version: 2.1.1
|
63
63
|
type: :runtime
|
64
64
|
prerelease: false
|
65
65
|
version_requirements: !ruby/object:Gem::Requirement
|
66
66
|
requirements:
|
67
67
|
- - "~>"
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: '2.
|
69
|
+
version: '2.1'
|
70
70
|
- - ">="
|
71
71
|
- !ruby/object:Gem::Version
|
72
|
-
version: 2.
|
72
|
+
version: 2.1.1
|
73
73
|
- !ruby/object:Gem::Dependency
|
74
74
|
name: fagin
|
75
75
|
requirement: !ruby/object:Gem::Requirement
|
@@ -150,11 +150,11 @@ dependencies:
|
|
150
150
|
- - ">="
|
151
151
|
- !ruby/object:Gem::Version
|
152
152
|
version: 0.1.4
|
153
|
-
description: Do you like to search through code using ag, ack, grep, or
|
154
|
-
This tool is for you! Zoom adds some convenience to
|
155
|
-
to quickly open your search results in your editor of choice. When looking at
|
156
|
-
code-bases, it can be a pain to have to scroll to find the filename of each
|
157
|
-
Zoom prints a tag number in front of each result that
|
153
|
+
description: Do you like to search through code using ag, ack, grep, pt, or rg? Good!
|
154
|
+
This tool is for you! Zoom adds some convenience to grep-like search tools by allowing
|
155
|
+
you to quickly open your search results in your editor of choice. When looking at
|
156
|
+
large code-bases, it can be a pain to have to scroll to find the filename of each
|
157
|
+
result. Zoom prints a tag number in front of each result that grep outputs. Then
|
158
158
|
you can quickly open that tag number with Zoom to jump straight to the source. Zoom
|
159
159
|
is even persistent across all your sessions! You can search in one terminal and
|
160
160
|
jump to a tag in another terminal from any directory!
|
@@ -187,6 +187,7 @@ files:
|
|
187
187
|
- lib/zoom/error/profile_class_unknown.rb
|
188
188
|
- lib/zoom/error/profile_does_not_exist.rb
|
189
189
|
- lib/zoom/error/profile_not_named.rb
|
190
|
+
- lib/zoom/error/regex_not_provided.rb
|
190
191
|
- lib/zoom/profile.rb
|
191
192
|
- lib/zoom/profile/ack.rb
|
192
193
|
- lib/zoom/profile/ag.rb
|
@@ -194,6 +195,7 @@ files:
|
|
194
195
|
- lib/zoom/profile/grep.rb
|
195
196
|
- lib/zoom/profile/passwords.rb
|
196
197
|
- lib/zoom/profile/pt.rb
|
198
|
+
- lib/zoom/profile/rg.rb
|
197
199
|
- lib/zoom/profile/unsafe_c.rb
|
198
200
|
- lib/zoom/profile/unsafe_java.rb
|
199
201
|
- lib/zoom/profile/unsafe_js.rb
|
@@ -232,7 +234,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
232
234
|
version: '0'
|
233
235
|
requirements: []
|
234
236
|
rubyforge_project:
|
235
|
-
rubygems_version: 2.6.
|
237
|
+
rubygems_version: 2.6.13
|
236
238
|
signing_key:
|
237
239
|
specification_version: 4
|
238
240
|
summary: Quickly open CLI search results in your favorite editor!
|