Sha256: ae91acd98415a6d9e4cb105f577d404624700482787cd17f3b8e102fa4ddd219

Contents?: true

Size: 1.12 KB

Versions: 1

Compression:

Stored size: 1.12 KB

Contents

# -*- encoding: utf-8 -*-
require File.expand_path("../lib/slot_machine/version", __FILE__)

Gem::Specification.new do |gem|
  gem.authors       = ["Paul Engel"]
  gem.email         = ["paul.engel@holder.nl"]
  gem.summary       = %q{Ruby gem for matching available slots (time slots are also supported)}
  gem.description   = %q{One of the classic programming problems is the determination of time slot availability. Very often this is used within scheduling / calendar programs. SlotMachine is a very small Ruby gem which can do the job for you. It does not only focuses on time slots, but also slots in general.}
  gem.homepage      = "https://github.com/archan937/slot_machine"

  gem.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  gem.files         = `git ls-files`.split("\n")
  gem.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  gem.name          = "slot_machine"
  gem.require_paths = ["lib"]
  gem.version       = SlotMachine::VERSION

  gem.add_development_dependency "minitest", "4.6.2"
  gem.add_development_dependency "mocha", "0.13.2"
  gem.add_development_dependency "rake"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
slot_machine-0.1.2 slot_machine.gemspec