vim-tags 0.4.2 → 1.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/.rubocop.yml +1 -38
- data/vim-tags.gemspec +2 -2
- 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: 48c4e716807d49f46839e3cb7a64e9ed661819876e9f0a214c7fce30a6930937
|
|
4
|
+
data.tar.gz: 5caaa8ef16c3a112dca3ec7c725128780135d5847c09876f3a542489b26dc90c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b63343e18ea0abed7349342124da4c495f23e9a9cc06d8f7d79fa39504d2698ed861ca88ea48204f83e4334c75daea70a1c909324e8ed51934774796e47fd952
|
|
7
|
+
data.tar.gz: 225161e497e35f27c7e951f8a3e4b8b6445ef83e1e91808f3858a67eebd40bc1562445a1dff5a16c510208e5b8c36f7bfacbbb75008ca32a5bfa298d874a34e8
|
data/.rubocop.yml
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
require:
|
|
2
2
|
- rubocop-minitest
|
|
3
3
|
- rubocop-performance
|
|
4
|
-
- rubocop-rails
|
|
5
4
|
AllCops:
|
|
6
5
|
NewCops: enable
|
|
7
6
|
Exclude:
|
|
@@ -13,7 +12,7 @@ AllCops:
|
|
|
13
12
|
- test/dummy/db/schema.rb
|
|
14
13
|
- gemfiles/**/*
|
|
15
14
|
- bin/**/*
|
|
16
|
-
TargetRubyVersion: 2.
|
|
15
|
+
TargetRubyVersion: 2.5
|
|
17
16
|
|
|
18
17
|
# Department Bundler
|
|
19
18
|
Bundler/DuplicatedGem:
|
|
@@ -1697,39 +1696,3 @@ Performance/Squeeze:
|
|
|
1697
1696
|
Enabled: true
|
|
1698
1697
|
Performance/StringInclude:
|
|
1699
1698
|
Enabled: true
|
|
1700
|
-
Rails/ActiveRecordCallbacksOrder:
|
|
1701
|
-
Enabled: true
|
|
1702
|
-
Rails/FindById:
|
|
1703
|
-
Enabled: true
|
|
1704
|
-
Rails/Inquiry:
|
|
1705
|
-
Enabled: false
|
|
1706
|
-
Rails/MailerName:
|
|
1707
|
-
Enabled: true
|
|
1708
|
-
Rails/MatchRoute:
|
|
1709
|
-
Enabled: true
|
|
1710
|
-
Rails/NegateInclude:
|
|
1711
|
-
Enabled: true
|
|
1712
|
-
Rails/Pluck:
|
|
1713
|
-
Enabled: true
|
|
1714
|
-
Rails/PluckInWhere:
|
|
1715
|
-
Enabled: true
|
|
1716
|
-
Rails/RenderInline:
|
|
1717
|
-
Enabled: true
|
|
1718
|
-
Rails/RenderPlainText:
|
|
1719
|
-
Enabled: true
|
|
1720
|
-
Rails/ShortI18n:
|
|
1721
|
-
Enabled: true
|
|
1722
|
-
Rails/WhereExists:
|
|
1723
|
-
Enabled: true
|
|
1724
|
-
Rails/SkipsModelValidations:
|
|
1725
|
-
Enabled: false
|
|
1726
|
-
Rails/UniqueValidationWithoutIndex:
|
|
1727
|
-
Enabled: false
|
|
1728
|
-
Rails/InverseOf:
|
|
1729
|
-
Enabled: false
|
|
1730
|
-
Rails/LexicallyScopedActionFilter:
|
|
1731
|
-
Enabled: false
|
|
1732
|
-
Minitest/MultipleAssertions:
|
|
1733
|
-
Enabled: false
|
|
1734
|
-
Rails/OutputSafety:
|
|
1735
|
-
Enabled: false
|
data/vim-tags.gemspec
CHANGED
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |spec|
|
|
4
4
|
spec.name = "vim-tags"
|
|
5
|
-
spec.version = "0.
|
|
5
|
+
spec.version = "1.0.0"
|
|
6
6
|
spec.authors = ["Nick Pezza"]
|
|
7
7
|
spec.email = ["pezza@hey.com"]
|
|
8
8
|
|
|
9
9
|
spec.summary =
|
|
10
10
|
"Generate cache file of all paths to tags files of dependencies"
|
|
11
11
|
spec.license = "MIT"
|
|
12
|
-
spec.required_ruby_version = ">= 2.
|
|
12
|
+
spec.required_ruby_version = ">= 2.5.0"
|
|
13
13
|
|
|
14
14
|
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
|
15
15
|
`git ls-files -z`.split("\x0").reject do |f|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vim-tags
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nick Pezza
|
|
@@ -49,7 +49,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
49
49
|
requirements:
|
|
50
50
|
- - ">="
|
|
51
51
|
- !ruby/object:Gem::Version
|
|
52
|
-
version: 2.
|
|
52
|
+
version: 2.5.0
|
|
53
53
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
54
54
|
requirements:
|
|
55
55
|
- - ">="
|