-
Notifications
You must be signed in to change notification settings - Fork 20
/
Gemfile
33 lines (26 loc) · 1.05 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
source "http://rubygems.org"
# iruby dependencies
# For rbczmq gem we need to install autogen otherwise you may
# get this error: "autogen.sh: error: could not find libtool.
# libtool is required to run autogen.sh. ZeroMQ autogen failed!"
# Mac user must do `brew install autogen`,
# if autogen is not installed
# Debian user must do `sudo apt install libtool-bin`,
# if libtool is not present
gem 'rbczmq'
gem 'ffi-rzmq'
# To run `iruby notebook` we need Python, ipython notebook,
# and jupyter.
# Please install according to the OS.
# Follow this : https://github.com/SciRuby/iruby
gem 'iruby'
# fetch from the github master branch
gem "daru", git: 'https://github.com/SciRuby/daru.git'
gem "nyaplot", git: 'https://github.com/SciRuby/nyaplot.git'
gem 'google_visualr', git: 'https://github.com/winston/google_visualr.git'
gem 'daru-data_tables', git: 'https://github.com/Shekharrajak/daru-data_tables.git'
# daru-view
gemspec :path => '../../'
# used in tutorials :
# Nyaplot | Creating Visualizations with DataFrame | from daru examples
gem 'distribution'