https://github.com/mrcsparker/julby
Ruby / Julia bindings using Ruby FFI
https://github.com/mrcsparker/julby
Last synced: 2 months ago
JSON representation
Ruby / Julia bindings using Ruby FFI
- Host: GitHub
- URL: https://github.com/mrcsparker/julby
- Owner: mrcsparker
- Created: 2016-06-13T16:37:42.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-06-14T05:43:16.000Z (almost 9 years ago)
- Last Synced: 2025-02-14T02:22:45.251Z (4 months ago)
- Language: Ruby
- Size: 9.77 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Julby
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'julby'
```And then execute:
$ bundle
Or install it yourself as:
$ gem install julby
### MAC OS X problems
MAC OS X El Capitan has disabled processes from accessing `DYLD_LIBRARY_PATH`. If you have problems loading `libjulia.dylib`, add `libjulia.dylib` to your application path by running the following command (point to your version of `libjulia.dylib`):
```bash
export JULIA_DYLIB=/Applications/Julia-0.4.5.app/Contents/Resources/julia/lib/julia/libjulia.dylib
```## Usage
TODO: Write usage instructions here
## Development
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then 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).
## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/mrcsparker/julby.