tuga 0.6.0 → 0.6.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/CHANGELOG.md +5 -0
- data/lib/tuga/ruby_parser_patches.rb +3 -0
- data/lib/tuga/version.rb +1 -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: c40a2d48207af7491730175d3cb6fe5c23dbb46801bfafb8f63b66cd02c4cfea
|
|
4
|
+
data.tar.gz: 8de32f30befcc8397ad7dfe2b40beaa6f84079f72355205692138c390dfd0369
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5368b5efa8cc6d24e708f43c23b9734e9ec16783424aa20ef88c69589ff6a8c74a679614652c50805f50363c31c2414508fd12bb732ee898ac1b04571ec85a55
|
|
7
|
+
data.tar.gz: 0e0741e475efa6b404aeb41e597f1a870b510639307fd8c92e97a38b8551520c59c513b909c1c4b1aadcda2bf42ee30952f37d557f8ff75ec28ad66b4490aa11
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
|
5
5
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [0.6.1] - 2023-08-31
|
|
8
|
+
### Changed
|
|
9
|
+
- Removes the constant `RubyParserStuff::Keyword::WORDLIST` before re-setting it. Prevents a warning.
|
|
10
|
+
|
|
7
11
|
## [0.6.0] - 2023-08-22
|
|
8
12
|
### Changed
|
|
9
13
|
- Set the minimum Ruby version to `3.2`.
|
|
@@ -48,6 +52,7 @@ by updating it from `~ 10.0` to `~ 12.3`.
|
|
|
48
52
|
- Initial core functionality
|
|
49
53
|
- Codebase maintenance tools
|
|
50
54
|
|
|
55
|
+
[0.6.1]: https://github.com/wilsonsilva/tuga/compare/v0.6.0...v0.6.1
|
|
51
56
|
[0.6.0]: https://github.com/wilsonsilva/tuga/compare/v0.5.1...v0.6.0
|
|
52
57
|
[0.5.1]: https://github.com/wilsonsilva/tuga/compare/v0.5.0...v0.5.1
|
|
53
58
|
[0.5.0]: https://github.com/wilsonsilva/tuga/compare/v0.4.0...v0.5.0
|
|
@@ -63,6 +63,9 @@ module RubyParserStuff
|
|
|
63
63
|
|
|
64
64
|
# :startdoc:
|
|
65
65
|
|
|
66
|
+
# Remove the constant before defining it again. Prevents warnings.
|
|
67
|
+
RubyParserStuff::Keyword.send(:remove_const, :WORDLIST) if defined?(RubyParserStuff::Keyword::WORDLIST)
|
|
68
|
+
|
|
66
69
|
WORDLIST = Hash[*wordlist.map { |o| [o.name, o] }.flatten]
|
|
67
70
|
end
|
|
68
71
|
end
|
data/lib/tuga/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tuga
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Wilson Silva
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-08-
|
|
11
|
+
date: 2023-08-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ruby2ruby
|