TextTube
Pass a string through filters to transform it.
Build status
Why?
I wanted to run a filter across articles I'd written for my blog, but also for the atom feed to the blog. Both needed some of the filters, but the atom feed needed less of them and slightly different options.
What does it do?
You want to filter/transform a string. You also want to run several filters across it, usually in the same way but sometimes just some of them, sometimes in a slightly different order. Object orientated programming will come to our rescue!
- The string is the instance.
- Modules hold groups of reusable filters.
- A class defines which filters to use.
- The method for running the filters will also allow ordering.
In practice this means:
require 'texttube/filterable'
module AFilter
extend TextTube::Filterable
filter_with :double do |text|
text * 2
end
filter_with :triple do |text|
text * 3
end
end
module BFil
extend TextTube::Filterable
filter_with :spacial do |current,|
current.split(//).join " "
end
end
require 'texttube/base'
class NeuS < TextTube::Base
register BFil
register AFilter
register do # on the fly
filter_with :dashes do |text|
"---#{text}---"
end
end
end
Now there is a class NeuS which will run filters :spacial, :double, :triple, and :dashes in that order, on a given string. For example:
n = NeuS.new "abc"
Running all of the filters:
n.filter
# => "---a b ca b ca b ca b ca b ca b c---"
Or just some of the filters:
n.filter :spacial
# => "a b c"
n.filter :spacial, :dashes
# => "---a b c---"
Run them more than once:
n.filter :double, :triple, :double
# => "abcabcabcabcabcabcabcabcabcabcabcabc"
Creating a filter
Make something filterable:
require 'texttube/filterable'
module AnotherFilter
extend TextTube::Filterable
filter_with :copyright do |text|
text << " ©#{Time.now.year}. "
end
filter_with :number do |text,|
text * [:times].to_i
end
end
That's all there is to creating a filter.
Creating a filter class
The class picks which filters to use, and can add filters on the fly, by using register:
require 'texttube/base'
class MyString < TextTube::Base
register AnotherFilter
register do
filter_with :my_name do |text|
text.gsub "Iain Barnett", %q!<a href="iainbarnett.me.uk" title="My blog">Iain Barnett</a>!
end
end
end
s = MyString.new "Let me introduce Iain Barnett. He writes Ruby code."
# => "Let me introduce Iain Barnett. He writes Ruby code."
MyString..merge! :number => {times: 2}
# => {:number=>{:times=>2}}
s.filter
# => "Let me introduce <a href="iainbarnett.me.uk" title="My blog">Iain Barnett</a>. He writes Ruby code. ©2013. Let me introduce <a href="iainbarnett.me.uk" title="My blog">Iain Barnett</a>. He writes Ruby code. ©2013. "
Ready made filters
They used to come with this library, but sometimes they caused problems with installation (things like Nokogiri can be painful to install at times) so I spun them off into their own library - TextTubeBaby!
Contributors
Many thanks to Eleni Karinou and Annette Smith for brainsplatting a new name for the library, and after many unusable and clearly disturbing suggestions, to Annette for the final name (and its spin off, TextTubeBaby).
Licence
Copyright (c) 2013 Iain Barnett
MIT Licence
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
i.e. be good

