1
0
Fork 0
forked from wezm/wezm.net
wezm.net/lib/articles.rb

22 lines
437 B
Ruby
Raw Normal View History

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