Sha256: 3c908af9ac9c6be3d9a4194f56808b230949abf3b9d93810420ca6c8c2041a25

Contents?: true

Size: 1.24 KB

Versions: 8

Compression:

Stored size: 1.24 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "version"

Gem::Specification.new do |s|
  s.name = %q{has_normalized_attributes}
  s.version = HasNormalizedAttributes::VERSION
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Kyle Ginavan"]
  s.date = %q{2010-05-18}
  s.homepage = "https://github.com/kylejginavan/has_normalized_attributes"
  s.summary =  %q{Ruby on Rails gem for normalize data prior to save}
  s.description = %q{has_normalized_attributes is a Ruby on Rails gem that lets you normalize user data for an improved user experience.
It takes the messy user inputed data and normalizes it into a nice clean standard format.}
  s.email = %q{kylejginavan@gmail.com}
  s.rubyforge_project = "has_normalized_attributes"
  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]
  s.add_development_dependency "rspec"
  s.add_development_dependency("activerecord", ['>= 3.1.0'])
  s.add_development_dependency("sqlite3")
  s.add_development_dependency('database_cleaner')
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
has_normalized_attributes-0.0.10 has_normalized_attributes.gemspec
has_normalized_attributes-0.0.9 has_normalized_attributes.gemspec
has_normalized_attributes-0.0.8 has_normalized_attributes.gemspec
has_normalized_attributes-0.0.6 has_normalized_attributes.gemspec
has_normalized_attributes-0.0.5 has_normalized_attributes.gemspec
has_normalized_attributes-0.0.4 has_normalized_attributes.gemspec
has_normalized_attributes-0.0.3 has_normalized_attributes.gemspec
has_normalized_attributes-0.0.2 has_normalized_attributes.gemspec