Sha256: b9a4b09451bdb7ffc81759e178a86c32572b240ee6a2ec9a327be04b1336eee6
Contents?: true
Size: 911 Bytes
Versions: 1
Compression:
Stored size: 911 Bytes
Contents
Gem::Specification.new do |s| s.name = 'miner_mover' s.summary = "This project provides a basic concurrency problem useful for" << " exploring different multitasking paradigms available in Ruby" s.description = <<EOF Fundamentally, we have a set of miners and a set of movers. A miner takes some amount of time to mine ore, which is given to a mover. When a mover has enough ore for a full batch, the delivery takes some amount of time before more ore can be loaded. EOF s.authors = ["Rick Hull"] s.homepage = "https://github.com/rickhull/miner_mover" s.license = "LGPL-3.0" s.required_ruby_version = "> 2" s.version = File.read(File.join(__dir__, 'VERSION')).chomp s.files = %w[miner_mover.gemspec VERSION README.md Rakefile] s.files += Dir['lib/**/*.rb'] s.files += Dir['test/**/*.rb'] s.files += Dir['demo/**/*.rb'] s.add_runtime_dependency "dotcfg", "~> 1.0" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
miner_mover-0.1.2.1 | miner_mover.gemspec |