Sha256: 7d38d28490bfa03610db0db236ef95d326d11ee6bd69e188b0fd752a247c3ba9
Contents?: true
Size: 1.02 KB
Versions: 2
Compression:
Stored size: 1.02 KB
Contents
lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'consenter/version' Gem::Specification.new do |spec| spec.name = Consenter::NAME spec.version = Consenter::VERSION spec.authors = ['Peter Vandenberk'] spec.email = ['pvandenberk@mac.com'] spec.summary = 'Idiomatic Enumerable extension to filter by consent' spec.description = 'Ask for consent for each element in an Enumerable' spec.homepage = 'https://github.com/pvdb/consenter' spec.license = 'MIT' spec.files = Dir.chdir(File.expand_path(__dir__)) do `git ls-files -z` .split("\x0") .reject { |f| f.match(%r{^(test|spec|features)/}) } end spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_development_dependency 'bundler' spec.add_development_dependency 'pry' spec.add_development_dependency 'rake' spec.add_development_dependency 'rubocop' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
consenter-1.0.5 | consenter.gemspec |
consenter-1.0.4 | consenter.gemspec |