{"id":23398277,"url":"https://github.com/mattruggio/nocode","last_synced_at":"2025-09-19T05:54:22.858Z","repository":{"id":56885642,"uuid":"454644542","full_name":"mattruggio/nocode","owner":"mattruggio","description":"Configurable low/no-code execution engine.","archived":false,"fork":false,"pushed_at":"2023-03-25T14:12:03.000Z","size":89,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-28T03:32:28.627Z","etag":null,"topics":["low-code","low-code-framework","no-code","no-code-framework","nocode","ruby"],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mattruggio.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-02-02T04:39:29.000Z","updated_at":"2025-03-30T00:48:58.000Z","dependencies_parsed_at":"2022-08-20T14:31:19.831Z","dependency_job_id":null,"html_url":"https://github.com/mattruggio/nocode","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/mattruggio/nocode","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mattruggio%2Fnocode","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mattruggio%2Fnocode/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mattruggio%2Fnocode/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mattruggio%2Fnocode/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mattruggio","download_url":"https://codeload.github.com/mattruggio/nocode/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mattruggio%2Fnocode/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275887987,"owners_count":25546585,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-19T02:00:09.700Z","response_time":108,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["low-code","low-code-framework","no-code","no-code-framework","nocode","ruby"],"created_at":"2024-12-22T09:38:19.999Z","updated_at":"2025-09-19T05:54:22.806Z","avatar_url":"https://github.com/mattruggio.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Nocode\n\n#### Execute Ruby code through YAML\n\n[![Gem Version](https://badge.fury.io/rb/nocode.svg)](https://badge.fury.io/rb/nocode) [![Ruby Gem CI](https://github.com/mattruggio/nocode/actions/workflows/rubygem.yml/badge.svg)](https://github.com/mattruggio/nocode/actions/workflows/rubygem.yml) [![Maintainability](https://api.codeclimate.com/v1/badges/66479dae44129c87dc88/maintainability)](https://codeclimate.com/github/mattruggio/nocode/maintainability) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\nNocode is a library that provides a YAML interface draped over arbitrary Ruby code.  The YAML contains a series of steps with each step mapping to a specific Ruby class.  The Ruby classes just have one responsibility: to implement #perform.\n\n## Installation\n\nTo install through Rubygems:\n\n````\ngem install nocode\n````\n\nYou can also add this to your Gemfile using:\n\n````\nbundle add nocode\n````\n\n## Examples\n\nCreate a file called `nocode-csv-to-json.yaml`:\n\n### CSV-to-JSON File Converter\n\n````yaml\nparameters:\n  input_filename: input.csv\n  output_filename: output.json\n\nsteps:\n  - type: io/read\n    name: READ FILE\n    options:\n      path:\n        - files\n        - \u003c\u003c parameters.input_filename \u003e\u003e\n  - type: deserialize/csv\n  - type: serialize/json\n  - type: io/write\n    options:\n      path:\n        - files\n        - \u003c\u003c parameters.output_filename \u003e\u003e\n````\n\nCreate csv file at: `files/input.csv`\n\nExecute in Ruby:\n\n````ruby\npath = Pathname.new('nocode-csv-to-json.yaml')\n\nNocode.execute(path)\n````\n\nOr use bundler:\n\n````zsh\nbundle exec nocode nocode-csv-to-json.yaml\n````\n\nA file should have been created at: `files/output.json`.\n\nNotes:\n\n* Path can be an array or a string.  If its an array then the environment's path separator will be used.\n* The `name` job key is optional.  If present then it will print out on the log.\n* Parameter values can be interpolated with keys and values using `\u003c\u003c parameters.key \u003e\u003e` syntax\n\n\n\n## Contributing\n\n### Development Environment Configuration\n\nBasic steps to take to get this repository compiling:\n\n1. Install [Ruby](https://www.ruby-lang.org/en/documentation/installation/) (check nocode.gemspec for versions supported)\n2. Install bundler (gem install bundler)\n3. Clone the repository (git clone git@github.com:mattruggio/nocode.git)\n4. Navigate to the root folder (cd nocode)\n5. Install dependencies (bundle)\n\n### Running Tests\n\nTo execute the test suite run:\n\n````zsh\nbin/rspec spec --format documentation\n````\n\nAlternatively, you can have Guard watch for changes:\n\n````zsh\nbin/guard\n````\n\nAlso, do not forget to run Rubocop:\n\n````zsh\nbin/rubocop\n````\n\nAnd auditing the dependencies:\n\n````zsh\nbin/bundler-audit check --update\n````\n\n### Publishing\n\nNote: ensure you have proper authorization before trying to publish new versions.\n\nAfter code changes have successfully gone through the Pull Request review process then the following steps should be followed for publishing new versions:\n\n1. Merge Pull Request into main\n2. Update `version.rb` using [semantic versioning](https://semver.org/)\n3. Install dependencies: `bundle`\n4. Update `CHANGELOG.md` with release notes\n5. Commit \u0026 push main to remote and ensure CI builds main successfully\n6. Run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).\n\n## Code of Conduct\n\nEveryone interacting in this codebase, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/mattruggio/nocode/blob/main/CODE_OF_CONDUCT.md).\n\n## License\n\nThis project is MIT Licensed.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmattruggio%2Fnocode","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmattruggio%2Fnocode","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmattruggio%2Fnocode/lists"}