Sha256: bc710ef6ec4aaa79ad8a9018a8cd0f093bb530f5e2768a5b19718b2653b53897
Contents?: true
Size: 771 Bytes
Versions: 5
Compression:
Stored size: 771 Bytes
Contents
# frozen_string_literal: true lib = File.expand_path("lib", __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "simple_validate/version" Gem::Specification.new do |spec| spec.name = "simple_validate" spec.version = SimpleValidate::VERSION spec.authors = ["Nick Palaniuk"] spec.email = ["npalaniuk@gmail.com"] spec.summary = "PORO validation mixin with no deps" spec.description = "PORO validation mixin with no deps" spec.homepage = "https://github.com/nikkypx/simple_validate" spec.license = "MIT" spec.required_ruby_version = ">= 3.1" spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.require_paths = ["lib"] end
Version data entries
5 entries across 5 versions & 1 rubygems