-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathencapsulator.gemspec
More file actions
27 lines (22 loc) · 991 Bytes
/
encapsulator.gemspec
File metadata and controls
27 lines (22 loc) · 991 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
# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "encapsulator/version"
Gem::Specification.new do |spec|
spec.name = "encapsulator"
spec.version = Encapsulator::VERSION
spec.authors = ["Thomas Pasquier", 'Matt K Lau', 'Xuehuan "Michael" Han']
spec.email = ["tfjmp@seas.harvard.edu"]
spec.summary = %q{encapsulator for R.}
spec.description = %q{Clean messy R code.}
spec.homepage = "https://github.com/tfjmp/encapsulator"
spec.add_runtime_dependency "rgl", ">= 0.5.3"
spec.add_runtime_dependency "rinruby", ">= 2.0.3"
spec.add_runtime_dependency "json", ">= 2.1.0"
spec.files = Dir.glob("{bin,lib}/**/*") + %w(LICENSE README.md)
spec.bindir = "bin"
spec.executables = ["encapsulator"]
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1.15"
spec.add_development_dependency "rake", "~> 12.3.3"
end