Sha256: 7a927e4e0f72fea8d040a5f65de6775bf758a82b3ca06b38c0f83d0866045f6f

Contents?: true

Size: 795 Bytes

Versions: 1

Compression:

Stored size: 795 Bytes

Contents

# -*- encoding: utf-8 -*-

require File.dirname(__FILE__) + "/lib/null_question"

Gem::Specification.new do |gem|
  gem.name          = "null_question"
  gem.version       = NullQuestion::VERSION
  gem.summary       = "Object#null?"
  gem.description   = "Adds NilClass#null? #=> true and Object#null? #=> false"
  gem.authors       = ["Jan Lelis"]
  gem.email         = ["mail@janlelis.de"]
  gem.homepage      = "https://github.com/janlelis/null_question"
  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.0"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
null_question-1.0.0 null_question.gemspec