forked from SciRuby/daru-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
daru-view.gemspec
53 lines (41 loc) · 1.75 KB
/
daru-view.gemspec
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
43
44
45
46
47
48
49
50
51
52
53
# coding: utf-8
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'daru/view/version'
Daru::View::DESCRIPTION = <<MSG
Daru (Data Analysis in RUby) is a library for analysis, manipulation and
visualization of data. Daru-view is for easy and interactive plotting in web
application & IRuby notebook. It can work in frameworks e.g. Rails, Sinatra,
Nanoc and hopefully in others too.
MSG
Gem::Specification.new do |spec|
spec.name = 'daru-view'
spec.version = Daru::View::VERSION
spec.authors = ['Shekhar Prasad Rajak']
spec.email = ['[email protected]']
spec.summary = 'Plugin gem to Data Analysis in RUby(Daru) for visualisation of data'
spec.description = Daru::View::DESCRIPTION
spec.homepage = 'https://github.com/Shekharrajak/daru-view'
spec.license = 'MIT'
spec.require_paths = ['lib']
spec.files = `git ls-files -z`.split("\x0")
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.executables = ['daru-view']
spec.add_development_dependency 'bundler'
spec.add_development_dependency "rake"
spec.add_development_dependency 'pry'
spec.add_development_dependency 'pry-byebug'
spec.add_development_dependency 'rubocop'
# fetching latest gem from the Gemfile
spec.add_runtime_dependency 'google_visualr'
spec.add_runtime_dependency 'lazy_high_charts'
spec.add_runtime_dependency 'daru'
spec.add_runtime_dependency 'nyaplot'
spec.add_runtime_dependency 'daru-data_tables'
# lazy_high_charts dependency
spec.add_runtime_dependency 'actionview'
# build gem and release it on rubygems
spec.add_development_dependency 'rubygems-tasks'
# gem for CLI
spec.add_runtime_dependency 'thor'
end