ripper-tags 0.8.0 → 0.8.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 +4 -4
- data/lib/ripper-tags.rb +1 -1
- data/lib/ripper-tags/emacs_append_formatter.rb +2 -0
- data/lib/ripper-tags/vim_append_formatter.rb +5 -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: 6b5f417b27a94f391fabd9c6fb7813e0bd5c7d87852d58271dd1ac6ef198bce4
|
|
4
|
+
data.tar.gz: 0d7bd52c4ba5f8bab9f04fa67fc0bbd4a6c5330ae1f52a69ca4ee63ee972fed1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c27c99ca37f39c393b217b059c01fc7b780e51d1687a8528fd71d84bc004a4dc695af028cd4640effe65258f56f4d1e8e5f00916ff622c63094ad4c4e1387e61
|
|
7
|
+
data.tar.gz: 0da26a4d951b1d387b6423469a0d324198eaf14af80fdb6ed85b6912c45200112296fb9fdfe60e395c681c430f0393f8b2799e2a63d4bf174f6b37f30f00ee69
|
data/lib/ripper-tags.rb
CHANGED
|
@@ -9,7 +9,11 @@ module RipperTags
|
|
|
9
9
|
end
|
|
10
10
|
|
|
11
11
|
def with_output
|
|
12
|
-
orig_lines =
|
|
12
|
+
orig_lines = begin
|
|
13
|
+
File.readlines(@formatter.options.tag_file_name)
|
|
14
|
+
rescue Errno::ENOENT
|
|
15
|
+
[]
|
|
16
|
+
end
|
|
13
17
|
@seen_filenames = Set.new
|
|
14
18
|
|
|
15
19
|
@formatter.with_output do |out|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ripper-tags
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mislav Marohnić
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2019-
|
|
12
|
+
date: 2019-12-17 00:00:00.000000000 Z
|
|
13
13
|
dependencies: []
|
|
14
14
|
description: fast, accurate ctags generator for ruby source code using Ripper
|
|
15
15
|
email:
|