Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arafatkatze/merge_repo
https://github.com/arafatkatze/merge_repo
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/arafatkatze/merge_repo
- Owner: arafatkatze
- Created: 2018-08-17T06:17:18.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-08-17T06:18:04.000Z (over 6 years ago)
- Last Synced: 2024-04-13T14:20:19.359Z (8 months ago)
- Language: Ruby
- Size: 8.41 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.rdoc
Awesome Lists containing this project
README
# GRruby-extension
An extension for the GR library using the same interface as Rubyplot.
# Installation
Firstly, make sure that you have ruby-dev```bash
sudo apt install ruby-dev
```Now, we need to install the backend (GR Framework) the easiest way to install GR framework is to simply select your system configuration [here](https://software.opensuse.org/download.html?project=science:gr-framework&package=python-gr) and following the process mentioned.
But instead of installing python-gr replace it with just gr. [for example: sudo apt-get install python-gr (in case of Ubuntu) ]
(unless you also want GR Framework for Python)This will install GR Framework in /usr . So we will create a symbolic link for the same by:
```bash
sudo ln -s /usr/gr /usr/local/gr
```
Now we install my version of Rubyplot by:```bash
git clone https://github.com/pgtgrly/GRruby-extension
cd GRruby-extension
sudo gem install rspec ZenTest rspec-autotest hoe rmagick rake-compiler
rake compile
```You can generate documents using
```bash
yard doc
```and view them (on web browser) using:
```bash
yard server
```