1
0
Fork 0
forked from wezm/wezm.net
wezm.net/lib/articles.rb
2010-01-30 16:50:07 +11:00

22 lines
No EOL
437 B
Ruby

module WezM
module Helpers
module Articles
def personal_articles
sorted_articles.select { |a| a.identifier =~ %r{^/personal/} }
end
def technical_articles
sorted_articles.select { |a| a.identifier =~ %r{^/technical/} }
end
def article_to_json(article)
{
:title => article[:title],
:path => article.identifier,
}
end
end
end
end