This ruby gem provides a DSL to describe patterns of regular expressions in a more human readable way.
pattern = Patternify::Pattern do
one_or_many do
any_char
end
string "@"
one_or_many do
negate do
string "."
end
end
string "."
either do
string "com"
end.or do
string "org"
end.or do
string "net"
end
end
pattern.to_s
# => .+@[^\.]+.(com|org|net)
pattern.to_regexp.match?("[email protected]")
# => true
Note: I started this gem for fun and it is highly incomplete and lacks validations and documentation. Pull requests are welcome.
Add this line to your application's Gemfile:
gem 'patternify'
And then execute:
$ bundle
Or install it yourself as:
$ gem install patternify
TODO: Write usage instructions here
After checking out the repo, run bin/setup
to install dependencies. Then, run rake spec
to run the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and tags, and push the .gem
file to rubygems.org.
Bug reports and pull requests are welcome on GitHub at https://github.com/nsommer/patternify.
The gem is available as open source under the terms of the MIT License.