Bypass is a Ruby gem that scans plain text or HTML documents for URLs and hyperlinks and allows you to mutate or replace them with ease. This library was originally designed for appending tracking data and shortening link URLs in HTML and plain text emails.
Extracted from Drip.
Add this line to your application's Gemfile:
gem 'bypass'
And then execute:
$ bundle
Or install it yourself as:
$ gem install bypass
There are URL filters available for both plain text and HTML documents.
To replace all URLs in a plain text document:
text = "Visit our website: http://www.getdrip.com"
filter = Bypass::TextFilter.new(text)
filter.replace do |url|
url.append_to_query_values(:id => 123)
url
end
filter.content
#=> "Visit our website: http://www.getdrip.com?id=123"
To replace all href
attributes in a
tags in an HTML document:
text = "Visit our website: <a href='http://www.getdrip.com'>Drip</a>"
filter = Bypass::HTMLFilter.new(text)
filter.replace do |url|
url.append_to_query_values(:id => 123)
url
end
filter.content
#=> "Visit our website: <a href='http://www.getdrip.com?id=123'>Drip</a>"
To convert all non-hyperlinked URLs to hyperlinks:
text = "Lets auto link this: http://www.google.com"
filter = Bypass::HTMLFilter.new(text)
filter.auto_link
filter.content
#=> "Lets auto link this: <a href='http://www.google.com'>http://www.google.com</a>"
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request