vinter 0.3.0 → 0.5.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.
data/lib/vinter.rb CHANGED
@@ -2,7 +2,8 @@ require "vinter/lexer"
2
2
  require "vinter/parser"
3
3
  require "vinter/linter"
4
4
  require "vinter/cli"
5
+ require "vinter/ast_printer"
5
6
 
6
7
  module Vinter
7
- VERSION = "0.3.0"
8
+ VERSION = "0.5.0"
8
9
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vinter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dan Bradbury
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-04-10 00:00:00.000000000 Z
11
+ date: 2025-11-26 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: A linter for the Vim9 script language, helping to identify issues and
14
14
  enforce best practices
@@ -22,6 +22,7 @@ files:
22
22
  - README.md
23
23
  - bin/vinter
24
24
  - lib/vinter.rb
25
+ - lib/vinter/ast_printer.rb
25
26
  - lib/vinter/cli.rb
26
27
  - lib/vinter/lexer.rb
27
28
  - lib/vinter/linter.rb
@@ -45,7 +46,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
45
46
  - !ruby/object:Gem::Version
46
47
  version: '0'
47
48
  requirements: []
48
- rubygems_version: 3.5.22
49
+ rubygems_version: 3.5.11
49
50
  signing_key:
50
51
  specification_version: 4
51
52
  summary: A linter for leagacy + Vim9 script