Sha256: 6ef0f664bbfea4a7683263fb82d0b64e5de0384a9778879dae280ba17d1756fe
Contents?: true
Size: 825 Bytes
Versions: 1
Compression:
Stored size: 825 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 = 'Validations for any plain old ruby object' spec.description = 'Validations for any ruby object' spec.homepage = 'https://github.com/nikkypx/simple_validate' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.require_paths = ['lib'] spec.add_dependency 'activesupport' spec.add_development_dependency 'bundler' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
simple_validate-1.2.3 | simple_validate.gemspec |