Sha256: 5bbb635eeda1541a04609f7371be6ad0b6e1b4dd2bae45f6ead1b6dd7b0a0a64
Contents?: true
Size: 1.15 KB
Versions: 1
Compression:
Stored size: 1.15 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.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', ['~> 3.0'] s.add_development_dependency 'activesupport', ['~> 3.0'] s.add_development_dependency 'rake' s.add_development_dependency 'rspec' s.add_development_dependency 'simplecov' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
prevent_blankification_validator-0.0.1 | prevent_blankification_validator.gemspec |