tuga 0.6.0 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 74eb2f8c0c7aaa0db1c977c06f62633fa6afe0cabff2f12d94b63145534905f7
4
- data.tar.gz: 9a6e15575d943c7e6adc8d8a7a99e298c1459a60780599d91a5ada80c0ccb5e7
3
+ metadata.gz: c40a2d48207af7491730175d3cb6fe5c23dbb46801bfafb8f63b66cd02c4cfea
4
+ data.tar.gz: 8de32f30befcc8397ad7dfe2b40beaa6f84079f72355205692138c390dfd0369
5
5
  SHA512:
6
- metadata.gz: bf5ebf112a856cf888c0bd0fe30db0e71000f9cc64c1b0e637964e69a6d06248695cdb486e308a46ce0d5e310d0481306dee009a40536440fcc2475d452ab0b5
7
- data.tar.gz: 3656afe97f5e1fdb6b78a1347390f99e8095eaba8aa908cea297d04d71f86a64d7097c2253ab08aa0e28e3f84d39447f73fa4eed25c9a082caaa6a93ddda93d1
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
@@ -1,3 +1,3 @@
1
1
  module Tuga
2
- VERSION = '0.6.0'.freeze
2
+ VERSION = '0.6.1'.freeze
3
3
  end
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.0
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-22 00:00:00.000000000 Z
11
+ date: 2023-08-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ruby2ruby