matthewrudy / regexpert

A collection of common Regexps for Ruby. Validation for emails, uk postcode, etc.

This URL has Read+Write access

regexpert / regexpert.gemspec
100644 16 lines (15 sloc) 0.618 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Gem::Specification.new do |s|
  s.name = "regexpert"
  s.version = "0.0.2"
  s.date = "2008-12-07"
  s.summary = "A bunch of useful Regular expressions"
  s.email = "MatthewRudyJacobs@gmail.com"
  s.homepage = "http://github.com/matthewrudy/regexpert"
  s.description = "Regular expressions bundled into a single place, so you dont have to think anymore about what email regexp to use."
  s.has_rdoc = true
  s.authors = ["Matthew Rudy Jacobs"]
  s.files = ["README", "Rakefile", "lib/regexpert.rb"]
  #s.test_files = ["spec/aspicious.rb"]
  s.rdoc_options = ["--main", "README"]
  s.extra_rdoc_files = ["README"]
end