Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
neoteric-news / app / helpers / neoteric_news / posts_helper.rb
Size: Mime:
module NeotericNews
  module PostsHelper
    def post_path(post)
      date = post.published_at
      news_post_path(:year  => date.year,
                     :month => date.month,
                     :id    => post.slug)
    end
  end
end