Sha256: e1e0423e7353733d8c4c74d821236f0e06dbdd6234997030122c4ec89c35a573
Contents?: true
Size: 1.19 KB
Versions: 1
Compression:
Stored size: 1.19 KB
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'prevent_blankification_validator/version' Gem::Specification.new do |s| s.name = 'prevent_blankification_validator' s.version = PreventBlankificationValidator::VERSION s.authors = ['Gebhard Wöstemeyer'] s.email = ['g.woestemeyer@gmail.com'] s.description = %q{Rails 3 Validator, that prevents attributes from being changed to a blank value once they're present.} s.summary = %q{Rails 3 Validator, that prevents attributes from being changed to a blank value once they're present.} s.homepage = 'https://github.com/gewo/prevent_blankification_validator/' s.license = 'MIT' s.files = `git ls-files`.split($/) s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) } s.test_files = s.files.grep(%r{^spec/}) s.require_paths = ["lib"] s.add_runtime_dependency 'activemodel' s.add_development_dependency 'activesupport' s.add_development_dependency 'rake' s.add_development_dependency 'rspec' s.add_development_dependency 'simplecov' s.add_development_dependency 'coveralls' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
prevent_blankification_validator-0.1.0 | prevent_blankification_validator.gemspec |