Sha256: 1bd1c88c799b6a3a21d6b4bb18f3fca41f66c28da32d68f2affd1238358ed9cb
Contents?: true
Size: 1.36 KB
Versions: 1
Compression:
Stored size: 1.36 KB
Contents
# coding: utf-8 lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "activemodel/error_messages_without_attributes/version" Gem::Specification.new do |spec| spec.name = "activemodel-error_messages_without_attributes" spec.version = ActiveModel::ErrorMessagesWithoutAttributes::VERSION spec.authors = ["John Naegle", "Rob Mathews"] spec.email = ["john.naegle@goodmeasures.com", "rob.mathews@goodmeasures.com"] spec.summary = %q{Extends ActiveModel::Errors to allow messages to be generated that do not use the attribute name.} spec.description = %q{Extends ActiveModel::Errors to allow messages to be generated that do not use the attribute name} spec.homepage = "https://github.com/GoodMeasuresLLC/activemodel-error_messages_without_attributes" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.15" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" spec.add_development_dependency "activerecord" spec.add_development_dependency "sqlite3" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
activemodel-error_messages_without_attributes-0.1.0 | activemodel-error_messages_without_attributes.gemspec |