Skip to content

Quasar-Flash/cnab240_bancoabc

Repository files navigation

CNAB240 Banco ABC Library for Ruby

Build Status

Build Quality Gate Status Coverage Maintainability Rating

Project Scores

Bugs Code Smells Duplicated Lines (%) Lines of Code Reliability Rating Security Rating Technical Debt Vulnerabilities

Requirements

  • Ruby: Any version (tested: 3.0.1, 2.7.3, 2.6.7, 2.5.9)
  • Bundler

Problems?

Please do not directly email any committers with questions or problems. A community is best served when discussions are held in public.

Searching the issues for your problem is also a good idea.

Contributing

  • Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet;
  • Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it;
  • Fork the project;
  • Start a feature/bugfix branch;
  • Commit and push until you are happy with your contribution;
  • Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.;
  • Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.

License

Please see LICENSE for licensing details.

Maintainers

Run with Docker

The commands bellow are used to run this project in a container. They use the Dockerfile at the root of the project and create a volume to update the container with the code changes you make at the outside.

After every change to the source code you should do a '$rake install' in the container's bash and then you can run a new console or rspec/rubocop.

# in case you didn't build the image yet
docker build -t cnab-gem .
# raises the container and keeps it open and running using a never closing foreground job (in this case, 'bash')
docker run -it -v $(pwd):/cnab240_bancoabc cnab-gem bash