/tuga

A Portuguese script programming language meant for educational purposes.

Primary LanguageRubyMIT LicenseMIT

Tuga

Gem Version Build Status Maintainability Test Coverage Security Inline docs

A Portuguese script programming language meant for educational purposes.

Requirements

The gem requires version 2.6 of the Ruby programming language.

Installation

Add this line to your application's Gemfile:

gem 'tuga'

And then execute:

$ bundle install

Or install it yourself as:

$ gem install tuga

Usage

In the command line

Run the tuga command followed by a filename.

tuga soure_code.pt

In an application

Require the Tuga transpiler and give it Tuga source code.

require 'tuga/transpiler'

source_code = <<~BACALHAU
  lista_de_frutas = ['maçã', 'manga', 'goiaba', 'uva']

  por_cada fruta na lista_de_frutas fazer
    escrever fruta.com_letra_maiuscula
  fim
BACALHAU

transpiler = Tuga::Transpiler.new
transpiler.to_ruby(source_code)

Development

After checking out the repo, run bin/setup to install dependencies, configure git hooks and create support files.

You can also run bin/console for an interactive prompt that will allow you to experiment.

The health and maintainability of the codebase is ensured through a set of Rake tasks to test, lint and audit the gem for security vulnerabilities and documentation:

rake bundle:audit          # Checks for vulnerable versions of gems
rake qa                    # Test, lint and perform security and documentation audits
rake rubocop               # Lint the codebase with RuboCop
rake rubocop:auto_correct  # Auto-correct RuboCop offenses
rake spec                  # Run RSpec code examples
rake verify_measurements   # Verify that yardstick coverage is at least 100%
rake yard                  # Generate YARD Documentation
rake yard:junk             # Check the junk in your YARD Documentation
rake yardstick_measure     # Measure docs in lib/**/*.rb with yardstick

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/wilsonsilva/tuga. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the Tuga project's codebases, issue trackers, chat rooms and mailing lists is expected to ollow the code of conduct.