tuga 0.4.0 → 0.5.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: 1182e218e335d3ef1b2a6e208acb6956cb755979b8ccbe3d3ea630e44da861ac
4
- data.tar.gz: b8e59510a68c9759b0a3321e9c1079de4a7502cbff6b0f8f3663bc9ef1b44e85
3
+ metadata.gz: db2314492601f0226cbc4a7709c55eb24a1ad5245a6846caf16c3b2cdeaed53b
4
+ data.tar.gz: 778732d911d9f01c85e9a113154e9df0d4ddf9db9de9389d40c89fd49f2205c5
5
5
  SHA512:
6
- metadata.gz: b676302db8f8287946e551526b91d6401356cf86ec8869140e5a498dbec170203503b582147ec371e90d458ef14f2787ccc251f0348ab1566d621e5acda7380e
7
- data.tar.gz: de1372d83323034cc381d8d1790417543c2b9ce133809cf0cb4fa88a45f505bf15937339ad9f96fa3b9ca40eee72ffbd7df17c9f415381e5fba11f16d184000e
6
+ metadata.gz: 1a917a0c487fe5f6333bb78c290f633ba4b2ccec1c7b610f96ba5d1686f7d031a434a212590940b42f240dff19d4e9dd0f12dc4f0f92b7a7d1725953e8e0864b
7
+ data.tar.gz: 3d919cd13473c17426db469bb204a7489c06800513ab6f7b191b97e75d604fed8f3ba1c912b1d260e35c5457135d23a1c78f6bc5b11975d009c3ee871aeb91d5
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,14 @@ 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.1] - 2023-08-22
8
+ ### Changed
9
+ - Renamed the `master` branch to `main`
10
+
11
+ ## [0.5.0] - 2023-08-22
12
+ ### Added
13
+ - Added the keyword `na`, which is the equivalent of `in` in Ruby
14
+
7
15
  ## [0.4.0] - 2020-07-11
8
16
  ### Changed
9
17
  - Set the minimum Ruby version to 2.6.
@@ -32,6 +40,8 @@ by updating it from `~ 10.0` to `~ 12.3`.
32
40
  - Initial core functionality
33
41
  - Codebase maintenance tools
34
42
 
43
+ [0.5.1]: https://github.com/wilsonsilva/tuga/compare/v0.5.0...v0.5.1
44
+ [0.5.0]: https://github.com/wilsonsilva/tuga/compare/v0.4.0...v0.5.0
35
45
  [0.4.0]: https://github.com/wilsonsilva/tuga/compare/v0.3.0...v0.4.0
36
46
  [0.3.0]: https://github.com/wilsonsilva/tuga/compare/v0.2.0...v0.3.0
37
47
  [0.2.0]: https://github.com/wilsonsilva/tuga/compare/v0.1.0...v0.2.0
data/README.md CHANGED
@@ -1,11 +1,11 @@
1
1
  # Tuga
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/tuga.svg)](https://badge.fury.io/rb/tuga)
4
- [![Build Status](https://travis-ci.org/wilsonsilva/tuga.svg?branch=master)](https://travis-ci.org/wilsonsilva/tuga)
4
+ [![Build Status](https://travis-ci.org/wilsonsilva/tuga.svg?branch=main)](https://travis-ci.org/wilsonsilva/tuga)
5
5
  [![Maintainability](https://api.codeclimate.com/v1/badges/7afec90a09db3956b7dc/maintainability)](https://codeclimate.com/github/wilsonsilva/tuga/maintainability)
6
6
  [![Test Coverage](https://api.codeclimate.com/v1/badges/7afec90a09db3956b7dc/test_coverage)](https://codeclimate.com/github/wilsonsilva/tuga/test_coverage)
7
- [![Security](https://hakiri.io/github/wilsonsilva/tuga/master.svg)](https://hakiri.io/github/wilsonsilva/tuga/master)
8
- [![Inline docs](http://inch-ci.org/github/wilsonsilva/tuga.svg?branch=master)](http://inch-ci.org/github/wilsonsilva/tuga)
7
+ [![Security](https://hakiri.io/github/wilsonsilva/tuga/main.svg)](https://hakiri.io/github/wilsonsilva/tuga/main)
8
+ [![Inline docs](http://inch-ci.org/github/wilsonsilva/tuga.svg?branch=main)](http://inch-ci.org/github/wilsonsilva/tuga)
9
9
 
10
10
  A Portuguese script programming language meant for educational purposes.
11
11
 
@@ -81,7 +81,7 @@ rake yardstick_measure # Measure docs in lib/**/*.rb with yardstick
81
81
 
82
82
  Bug reports and pull requests are welcome on GitHub at https://github.com/wilsonsilva/tuga. This project is intended to
83
83
  be a safe, welcoming space for collaboration, and contributors are expected to adhere to the
84
- [code of conduct](https://github.com/wilsonsilva/tuga/blob/master/CODE_OF_CONDUCT.md).
84
+ [code of conduct](https://github.com/wilsonsilva/tuga/blob/main/CODE_OF_CONDUCT.md).
85
85
 
86
86
  ## License
87
87
 
@@ -90,4 +90,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
90
90
  ## Code of Conduct
91
91
 
92
92
  Everyone interacting in the Tuga project's codebases, issue trackers, chat rooms and mailing lists is expected to
93
- ollow the [code of conduct](https://github.com/wilsonsilva/tuga/blob/master/CODE_OF_CONDUCT.md).
93
+ ollow the [code of conduct](https://github.com/wilsonsilva/tuga/blob/main/CODE_OF_CONDUCT.md).
@@ -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.1'.freeze
3
3
  end
data/tuga.gemspec CHANGED
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
14
14
 
15
15
  spec.metadata['homepage_uri'] = spec.homepage
16
16
  spec.metadata['source_code_uri'] = 'https://github.com/wilsonsilva/tuga'
17
- spec.metadata['changelog_uri'] = 'https://github.com/wilsonsilva/tuga/blob/master/CHANGELOG.md'
17
+ spec.metadata['changelog_uri'] = 'https://github.com/wilsonsilva/tuga/blob/main/CHANGELOG.md'
18
18
 
19
19
  # Specify which files should be added to the gem when it is released.
20
20
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
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.1
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
@@ -339,8 +339,8 @@ licenses:
339
339
  metadata:
340
340
  homepage_uri: https://github.com/wilsonsilva/tuga
341
341
  source_code_uri: https://github.com/wilsonsilva/tuga
342
- changelog_uri: https://github.com/wilsonsilva/tuga/blob/master/CHANGELOG.md
343
- post_install_message:
342
+ changelog_uri: https://github.com/wilsonsilva/tuga/blob/main/CHANGELOG.md
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: []