forked from bdnelson/petri
-
Notifications
You must be signed in to change notification settings - Fork 1
/
petri_net.gemspec
22 lines (19 loc) · 879 Bytes
/
petri_net.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/petri_net/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["cclausen"]
gem.email = ["\"[email protected]\""]
gem.description = %q{A Petri net modeling gem}
gem.summary = %q{You can create Petri Nets and do some calculations with them like generating the Reachability Graph}
gem.homepage = "https://github.com/cclausen/petri_net"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "petri_net"
gem.require_paths = ["lib"]
gem.version = PetriNet::VERSION
gem.license = 'MIT'
gem.add_dependency "ruby-graphviz"
# gem.add_dependency "rgl"
gem.add_development_dependency "net-sftp"
end