tuga 0.4.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1182e218e335d3ef1b2a6e208acb6956cb755979b8ccbe3d3ea630e44da861ac
4
- data.tar.gz: b8e59510a68c9759b0a3321e9c1079de4a7502cbff6b0f8f3663bc9ef1b44e85
3
+ metadata.gz: 2613a982230eeaab207ae2287fc284fbb49768e7df04650610ccebeba90c431c
4
+ data.tar.gz: f1b9388de9d612ffe52bb1d8214be89e8a9f3c63910b6663cdddb9145a10826f
5
5
  SHA512:
6
- metadata.gz: b676302db8f8287946e551526b91d6401356cf86ec8869140e5a498dbec170203503b582147ec371e90d458ef14f2787ccc251f0348ab1566d621e5acda7380e
7
- data.tar.gz: de1372d83323034cc381d8d1790417543c2b9ce133809cf0cb4fa88a45f505bf15937339ad9f96fa3b9ca40eee72ffbd7df17c9f415381e5fba11f16d184000e
6
+ metadata.gz: 73660723f171e8c4dd93e73ba6236db5978020075e1b08006b730d45766e4649ef46b08c86d02fa50e9179c404e87fabb01045d776bad8152edc70fb8db1fcc2
7
+ data.tar.gz: 1e6ba6b45e6da30f24abee128593673f4580b65372f73a93e8d6e177dd8fa69853c4491b24a8930a7eec8f7cb38291e00811e1de19beffa3c8374a15c84ae626
data/.rubocop.yml CHANGED
@@ -2,9 +2,10 @@ require: rubocop-rspec
2
2
 
3
3
  AllCops:
4
4
  DisplayCopNames: true
5
- NewCops: enable
5
+ NewCops: disable
6
6
  Exclude:
7
7
  - lib/tuga/ruby_parser_patches.rb
8
+ - vendor/**/*
8
9
 
9
10
  # ----------------------- Layout ----------------------
10
11
 
data/.tool-versions CHANGED
@@ -1 +1 @@
1
- ruby 2.6.6
1
+ ruby 2.6.10
data/.travis.yml CHANGED
@@ -2,7 +2,7 @@
2
2
  language: ruby
3
3
  cache: bundler
4
4
  rvm:
5
- - 2.4.10
5
+ - 2.6.10
6
6
  before_install: gem install bundler -v 2.1.4
7
7
 
8
8
  before_script:
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.5.0] - 2023-08-22
8
+ ### Added
9
+ - Added the keyword `na`, which is the equivalent of `in` in Ruby
10
+
7
11
  ## [0.4.0] - 2020-07-11
8
12
  ### Changed
9
13
  - Set the minimum Ruby version to 2.6.
@@ -32,6 +36,7 @@ by updating it from `~ 10.0` to `~ 12.3`.
32
36
  - Initial core functionality
33
37
  - Codebase maintenance tools
34
38
 
39
+ [0.5.0]: https://github.com/wilsonsilva/tuga/compare/v0.4.0...v0.5.0
35
40
  [0.4.0]: https://github.com/wilsonsilva/tuga/compare/v0.3.0...v0.4.0
36
41
  [0.3.0]: https://github.com/wilsonsilva/tuga/compare/v0.2.0...v0.3.0
37
42
  [0.2.0]: https://github.com/wilsonsilva/tuga/compare/v0.1.0...v0.2.0
@@ -28,6 +28,7 @@ module RubyParserStuff
28
28
  ["por_cada", [:kFOR, :kFOR ], EXPR_BEG ],
29
29
  ["se", [:kIF, :kIF_MOD ], EXPR_BEG ],
30
30
  ["em", [:kIN, :kIN ], EXPR_BEG ],
31
+ ["na", [:kIN, :kIN ], EXPR_BEG ],
31
32
  ["modulo", [:kMODULE, :kMODULE ], EXPR_BEG ],
32
33
  ["grupo", [:kMODULE, :kMODULE ], EXPR_BEG ],
33
34
  ["seguinte", [:kNEXT, :kNEXT ], EXPR_MID ],
data/lib/tuga/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Tuga
2
- VERSION = '0.4.0'.freeze
2
+ VERSION = '0.5.0'.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.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wilson Silva
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-07-11 00:00:00.000000000 Z
11
+ date: 2023-08-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ruby2ruby
@@ -340,7 +340,7 @@ metadata:
340
340
  homepage_uri: https://github.com/wilsonsilva/tuga
341
341
  source_code_uri: https://github.com/wilsonsilva/tuga
342
342
  changelog_uri: https://github.com/wilsonsilva/tuga/blob/master/CHANGELOG.md
343
- post_install_message:
343
+ post_install_message:
344
344
  rdoc_options: []
345
345
  require_paths:
346
346
  - lib
@@ -355,8 +355,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
355
355
  - !ruby/object:Gem::Version
356
356
  version: '0'
357
357
  requirements: []
358
- rubygems_version: 3.0.3
359
- signing_key:
358
+ rubygems_version: 3.0.3.1
359
+ signing_key:
360
360
  specification_version: 4
361
361
  summary: A Portuguese script programming language.
362
362
  test_files: []