forked from dekart/validates_email_format_of
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvalidates_email_format_of.gemspec
32 lines (31 loc) · 1.06 KB
/
validates_email_format_of.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
Gem::Specification.new do |s|
s.name = "validates_email_format_of"
s.version = "1.3.0"
s.date = "2009-06-08"
s.summary = "Validate e-mail addreses against RFC 2822 and RFC 3696."
s.email = "[email protected]"
s.description = "Validate e-mail addreses against RFC 2822 and RFC 3696."
s.authors = ["Alex Dunae", "Dan Croak", "Mike Burns"]
s.extra_rdoc_files = ["CHANGELOG",
"lib/validates_email_format_of.rb",
"README.markdown"]
s.files = ["CHANGELOG",
"init.rb",
"lib/validates_email_format_of.rb",
"MIT-LICENSE",
"rails/init.rb",
"Rakefile",
"README",
"test/database.yml",
"test/fixtures/people.yml",
"test/fixtures/person.rb",
"test/schema.rb",
"test/test_helper.rb",
"test/validates_email_format_of_test.rb",
"Rakefile",
"validates_email_format_of.gemspec"]
s.has_rdoc = true
s.homepage = %q{http://code.dunae.ca/validates_email_format_of.html}
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Validates_email_format_of"]
s.require_paths = ["lib"]
end