-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathGemfile
More file actions
42 lines (34 loc) · 761 Bytes
/
Gemfile
File metadata and controls
42 lines (34 loc) · 761 Bytes
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
34
35
36
37
38
39
40
41
42
source "https://rubygems.org"
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
# Specify your gem's dependencies in charty.gemspec
gemspec
group :development, :test do
gem "bundler", ">= 1.16"
gem "csv"
gem "daru"
gem "fiddle"
gem "iruby", ">= 0.7.0"
gem "matrix" # need for daru on Ruby > 3.0
gem "rake"
end
group :test do
gem "test-unit"
end
group :activerecord do
gem "activerecord"
# We may need to specify version explicitly to align with `gem
# "sqlite", "..."` in
# lib/active_record/connection_adapters/sqlite3_adapter.rb.
gem "sqlite3"
end
group :cruby do
gem "enumerable-statistics"
end
group :numo do
gem "numo-narray"
end
group :python do
gem "matplotlib"
gem "numpy"
gem "pandas"
end