-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforce_layout.gemspec
More file actions
23 lines (20 loc) · 921 Bytes
/
force_layout.gemspec
File metadata and controls
23 lines (20 loc) · 921 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "force_layout/version"
Gem::Specification.new do |s|
s.name = "force_layout"
s.version = ForceLayout::VERSION
s.authors = %w(ivyxuan cassiuschen)
s.email = %w(iloveivyxuan@gmail.com chzsh1995@gmail.com)
s.homepage = %q{https://github.com/FoolishMeow/ForceLayout}
s.summary = %q{a force directed graph layout algorithm in Ruby}
s.description = %q{for data visualization, compute position of nodes and edges in both 2D and 3D}
s.extra_rdoc_files = ["README.md"]
s.date = Time.now
s.licenses = ["MIT"]
s.files = Dir['lib/*.rb'] + Dir['lib/**/*.rb']
s.required_ruby_version = '>= 2.0.0'
s.add_development_dependency "rspec", "~> 3.4"
s.add_development_dependency 'generator_spec'
s.add_development_dependency 'pry'
end