Sha256: f3061d37c404416a83b8129a1ece6b4e7f34301652e2578fca37ba3582377eb8

Contents?: true

Size: 892 Bytes

Versions: 2

Compression:

Stored size: 892 Bytes

Contents

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

Gem::Specification.new do |gem|
  gem.authors       = ["Rob Ares"]
  gem.email         = ["rob.ares@gmail.com"]
  gem.description   = %q{Ruby port of Scala's Option Monad}
  gem.summary       = %q{Option attempts to be faithful to the useful parts of the scala api. We lose the type safety but still is quite useful when dealing with optional values.}
  gem.homepage      = "http://www.github.com/rares/option"

  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{^(spec)/})
  gem.name          = "option"
  gem.require_paths = ["lib"]
  gem.version       = Option::VERSION

  gem.add_development_dependency "rake",     "= 0.9.2.2"
  gem.add_development_dependency "minitest", "= 3.4.0"
end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
camertron-option-1.0.0 ci/option.gemspec
option-1.2.0 ci/option.gemspec