16 lines
		
	
	
	
		
			507 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			507 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
Gem::Specification.new do |s|
 | 
						|
  s.name = 'param_validation'
 | 
						|
  s.version = '0.0.2'
 | 
						|
  s.date = '2017-07-21'
 | 
						|
  s.summary = 'Simple hash validator'
 | 
						|
  s.description = 'A hash validator that throws exceptions, with a lot of customization options'
 | 
						|
  s.authors = ['Jay R Bolton']
 | 
						|
  s.email = 'jayrbolton@gmail.com'
 | 
						|
  s.files = 'lib/param_validation.rb'
 | 
						|
  s.homepage = 'https://github.com/jayrbolton/ruby-param-validation'
 | 
						|
  s.license = 'MIT'
 | 
						|
 | 
						|
  s.add_runtime_dependency 'chronic'
 | 
						|
end
 |