0

我的 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

4

1 回答 1

1

您的 app/posts/ 中的一个或多个文件似乎不符合 Postmarkdown 要求的文件名格式。请参阅我们自述文件中的示例。

请检查 github 项目问题:

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

于 2013-04-15T06:41:43.993 回答