Sha256: c1be03902fcbf9c857a7aea06d40fc0ca811b51b037eaf97bdce041b4060f789
Contents?: true
Size: 780 Bytes
Versions: 1
Compression:
Stored size: 780 Bytes
Contents
# -*- encoding: utf-8 -*- require File.dirname(__FILE__) + "/lib/sig/version" Gem::Specification.new do |gem| gem.name = "sig" gem.version = Sig::VERSION gem.summary = "Optional Type Assertions for Ruby." gem.description = "Optional Type Assertions for Ruby methods." gem.authors = ["Jan Lelis"] gem.email = "mail@janlelis.de" gem.homepage = "https://github.com/janlelis/sig" gem.license = "MIT" gem.files = Dir["{**/}{.*,*}"].select{ |path| File.file?(path) && path !~ /^pkg/ } gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ["lib"] gem.required_ruby_version = ">= 2.1", "< 4.0" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sig-1.0.2 | sig.gemspec |