https://github.com/goatshriek/wrapture
a Ruby gem that generates object-oriented language wrappers for C code
https://github.com/goatshriek/wrapture
ruby rubygems
Last synced: 10 months ago
JSON representation
a Ruby gem that generates object-oriented language wrappers for C code
- Host: GitHub
- URL: https://github.com/goatshriek/wrapture
- Owner: goatshriek
- License: apache-2.0
- Created: 2019-05-02T00:21:37.000Z (about 7 years ago)
- Default Branch: latest
- Last Pushed: 2024-12-15T04:01:26.000Z (over 1 year ago)
- Last Synced: 2024-12-16T12:08:03.463Z (over 1 year ago)
- Topics: ruby, rubygems
- Language: Ruby
- Homepage: https://goatshriek.github.io/wrapture/
- Size: 688 KB
- Stars: 4
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog.md
- Contributing: docs/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: docs/CODE_OF_CONDUCT.md
- Security: docs/SECURITY.md
- Roadmap: docs/roadmap.md
Awesome Lists containing this project
README
# Wrapture
[](https://github.com/goatshriek/wrapture/actions?query=workflow%3Abuild)
[](https://codecov.io/gh/goatshriek/wrapture)
[](https://sonarcloud.io/dashboard?id=goatshriek_wrapture)
[](https://opensource.org/licenses/Apache-2.0)
A tool for generating object-oriented language wrappers for C code.
Wrapture uses YAML files that describe the C code being wrapped and the output
language interface.
## Installation and Dependencies
Wrapture is available on RubyGems.org and can be installed with a simple:
```ruby
gem install wrapture
```
Wrapture is packaged with bundler, so if you want to work on the source directly
you can get all dependencies with a simple `bundle install`.
Running the examples will require an environment that supports the target
language, for example a compiler like `g++`for the C++ examples. You will need
to install these on your own, as there is currently nothing in Wrapture to
manage all of the target language environments.
## Contributing
Wrapture is still in the early stages of development, largely being driven by
support of [stumpless](https://github.com/goatshriek/stumpless). If you'd like
to contribute, please submit an issue with ideas of features that you think are
important, or share your thoughts on Twitter with
[#WraptureGem](https://twitter.com/search?q=%23WraptureGem)!
Once the structure of the project has solidified, there will be issues for
contributors of all skill levels to get involved with, so stay tuned!