]> git.openstreetmap.org Git - rails.git/blobdiff - vendor/plugins/validates_email_format_of/validates_email_format_of.gemspec
Update validates_email_format_of plugin
[rails.git] / vendor / plugins / validates_email_format_of / validates_email_format_of.gemspec
index 85ffdbb09740c1c2359ce779ee8b5b9eab49f180..2b5206aee6dbc6f611ddb59e37d5e94e0e234a58 100644 (file)
@@ -1,32 +1,18 @@
-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 = "dcroak@thoughtbot.com"
-  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"]
+spec = Gem::Specification.new do |s|
+  s.name = 'validates_email_format_of'
+  s.version = '1.4.1'
+  s.summary = 'Validate e-mail addresses against RFC 2822 and RFC 3696.'
+  s.description = s.summary
+  s.extra_rdoc_files = ['README.rdoc', 'CHANGELOG.rdoc', 'MIT-LICENSE']
+  s.test_files = ['test/validates_email_format_of_test.rb','test/test_helper.rb','test/schema.rb','test/fixtures/person.rb', 'test/fixtures/people.yml']
+  s.files = ['init.rb','rakefile.rb', 'lib/validates_email_format_of.rb','rails/init.rb']
+  s.files << s.test_files
+  s.files << s.extra_rdoc_files
+  s.require_path = 'lib'
   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"]
+  s.rdoc_options << '--title' <<  'validates_email_format_of'
+  s.author = "Alex Dunae"
+  s.email = "code@dunae.ca"
+  s.homepage = "http://code.dunae.ca/validates_email_format_of.html"
 end