Convert to MIT license, switch to included priority queue
# -*- ruby -*- | ||
_VERSION = "0.4.3" | ||
_VERSION = "0.4.5" | ||
Gem::Specification.new do |s| | ||
s.name = "simplekit" | ||
s.version = _VERSION | ||
s.date = "2015-05-04" | ||
s.date = "2017-12-01" | ||
s.summary = "Discrete event simulation engine." | ||
s.homepage = "git://or.nps.edu/simplekit-ruby.git" | ||
s.homepage = "https://gitlab.nps.edu/pjsanche/simplekit-ruby.git" | ||
s.email = "pjs@alum.mit.edu" | ||
s.description = "This is a minimal discrete event simulation scheduling algorithm for educational use." | ||
s.author = "Paul J Sanchez" | ||
s.files = %w[ | ||
simplekit.gemspec | ||
ReadMe.1st | ||
lgpl.txt | ||
lib/simplekit.rb | ||
lib/priority_queue.rb | ||
] | ||
s.add_runtime_dependency 'skewheap', '~> 1.0.0' | ||
s.required_ruby_version = '>= 1.8.1' | ||
s.license = 'LGPL' | ||
s.license = 'MIT' | ||
end |
Please register or sign in to comment