-
Notifications
You must be signed in to change notification settings - Fork 7
/
has_normalized_attributes.gemspec
35 lines (31 loc) · 1.5 KB
/
has_normalized_attributes.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# -*- encoding: utf-8 -*-
lib = File.expand_path("../lib/", __FILE__)
$:.unshift lib unless $:.include?(lib)
require "has_normalized_attributes/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.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{[email protected]}
s.extra_rdoc_files = [
"README.rdoc"
]
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.homepage = "https://github.com/kylejginavan/has_normalized_attributes"
s.require_paths = ["lib"]
s.rubygems_version = %q{1.5.2}
s.summary = %q{Ruby on Rails gem for normalize data prior to save}
# s.rubyforge_project = "has_normalized_attributes"
s.add_development_dependency "activerecord", ">= 3.1.0"
s.add_development_dependency "byebug"
s.add_development_dependency "database_cleaner"
s.add_development_dependency "rspec_junit_formatter", "~> 0.3", ">= 0.3.0"
s.add_development_dependency "rspec"
s.add_development_dependency "sqlite3"
end