未定义的方法'捕获'Postmarkdown ruby​​ gem

时间:2013-04-15 06:29:31

标签: ruby-on-rails ruby haml markdown

我的rails应用程序由于某种原因没有加载

index.html.haml where line #4 raised:
undefined method `captures' for nil:NilClass

我的配置/路线:

 postmarkdown :as => :blog
 root :to => 'posts#index'

我的帖子/ index.html.haml

= render 'feed_link'

%section#posts
  - if collection.present?
    = render collection, :summary => true
    = paginate collection
  - else
    No posts found.

我正在使用这个宝石:https://github.com/ennova/postmarkdown

1 个答案:

答案 0 :(得分:1)

  

似乎app / posts /中的一个或多个文件不符合   到Postmarkdown所需的文件名格式。请参考   我们自述的例子。

请检查github项目问题:

https://github.com/ennova/postmarkdown/issues/15