Sha256: 791d479f65b5695cbadb08258297c936a2f8a1bca29cb095c9e257b8b8ca1fb9
Contents?: true
Size: 833 Bytes
Versions: 1
Compression:
Stored size: 833 Bytes
Contents
# -*- encoding: utf-8 -*- require File.dirname(__FILE__) + "/lib/exists/version" Gem::Specification.new do |gem| gem.name = "exists" gem.version = Exists::VERSION gem.summary = "Object#exists" gem.description = "Objecd#exists: Like ActiveSupport's presence, but for Object#null?" gem.authors = ["Jan Lelis"] gem.email = "mail@janlelis.de" gem.homepage = "https://github.com/janlelis/exists" 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" gem.add_dependency "null_question", "~> 1.0" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
exists-1.0.0 | exists.gemspec |