{"id":15713639,"url":"https://github.com/jwoertink/nacha","last_synced_at":"2025-05-12T22:54:43.730Z","repository":{"id":64469555,"uuid":"575972033","full_name":"jwoertink/nacha","owner":"jwoertink","description":"A Crystal shard for parsing and generating Nacha (ACH) files","archived":false,"fork":false,"pushed_at":"2023-03-01T17:53:40.000Z","size":61,"stargazers_count":4,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-05-12T22:54:39.121Z","etag":null,"topics":["ach","crystal-lang"],"latest_commit_sha":null,"homepage":"","language":"Crystal","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/jwoertink.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-12-08T18:01:11.000Z","updated_at":"2024-06-05T05:11:51.000Z","dependencies_parsed_at":"2024-10-24T10:51:44.244Z","dependency_job_id":"d7a158bb-8c44-4de5-b7f3-e5c10c96da0e","html_url":"https://github.com/jwoertink/nacha","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwoertink%2Fnacha","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwoertink%2Fnacha/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwoertink%2Fnacha/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwoertink%2Fnacha/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jwoertink","download_url":"https://codeload.github.com/jwoertink/nacha/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253837389,"owners_count":21971981,"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","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":["ach","crystal-lang"],"created_at":"2024-10-03T21:32:34.772Z","updated_at":"2025-05-12T22:54:43.710Z","avatar_url":"https://github.com/jwoertink.png","language":"Crystal","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Nacha\n\n\u003e The ACH file format (or NACHA file) is a text file with ASCII text lines, where each line is 94 characters long and serves as a “record” to execute domestic ACH payments through the Automated Clearing House Network (NACHA).\n- https://tipalti.com/nacha-file-format/\n\nHere's a few helpful links:\n- https://achdevguide.nacha.org/ach-file-overview\n- https://achdevguide.nacha.org/ach-file-details\n\nThis Crystal shard allows you to generate or parse a NACHA file.\n\n## Installation\n\n1. Add the dependency to your `shard.yml`:\n\n   ```yaml\n   dependencies:\n     nacha:\n       github: jwoertink/nacha\n   ```\n\n2. Run `shards install`\n\n## Usage\n\n**Still under development, things may change**\n\n```crystal\nrequire \"nacha\"\n\nentries = [\n  Nacha::EntryDetail.new,\n  Nacha::EntryDetail.new,\n] of Nacha::EntryDetail\n\nbatches = [\n  Nacha::Batch.new(\n    header: Nacha::BatchHeader.new,\n    entries: entries,\n  ),\n] of Nacha::Batch\n\nach_file = Nacha::File.new(\n  header: Nacha::FileHeader.new,\n  batches: batches,\n)\n\nputs ach_file.generate\n```\n\n\n## Development\n\n* write code\n* write spec\n* `crystal tool format spec/ src/`\n* `./bin/ameba`\n* `crystal spec`\n* repeat\n\n## Contributing\n\n1. Fork it (\u003chttps://github.com/jwoertink/nacha/fork\u003e)\n2. Create your feature branch (`git checkout -b my-new-feature`)\n3. Commit your changes (`git commit -am 'Add some feature'`)\n4. Push to the branch (`git push origin my-new-feature`)\n5. Create a new Pull Request\n\n## Contributors\n\n- [Jeremy Woertink](https://github.com/jwoertink) - creator and maintainer\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjwoertink%2Fnacha","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjwoertink%2Fnacha","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjwoertink%2Fnacha/lists"}