15th Thu
dm-paginationを作りました
dm-is-paginated-0.0.1は、specが走らない状態だったので、
Railsの
[pagination_scope](https://github.com/genki/pagination_scope/tree)風味のDataMapper用Paginationライブラリとして、
[dm-pagination](http://github.com/genki/dm-pagination/tree/master)
を作りました。
ruby>>
class Posts
def index
@posts = Post.paginate(:page => params[:page])
end
<<--
上記のようにコントローラでpaginationオブジェクトを作成し、
Viewから以下のように参照します。
html>>
-
<% @posts.each do |post| %>
- <%= h(post.body) %> <% end %>
posted by
genki on Thu 15 Jan 2009 at 01:41 with 0 comments