Recently, I've been making web sites by using Merb.
It was like a battle lacking logistics.
I made and released dm-pagination on github.
http://github.com/genki/dm-pagination/tree/master
Yes, I know dm-is-paginated-0.0.1, but its spec files was not working.
The dm-pagination is able to be used with arbitrary collections which include scoped_query.
You can easily paginate, like this:
1 class Posts
2 def index
3 @posts = Post.paginate(:page => params[:page])
4 end
Links will be drawn by calling simple helper method.
1 <ul>
2 <% @posts.each do |post| %>
3 <li><%= h(post.body) %></li>
4 <% end %>
5 </ul>
6 <%= paginate @posts %>
merb_slice-gen
is also available in order to provide useful generators for slices of which it has namespace but doesn't have subdirectories.
You can generate controller, resource and resource_controller in slice project, like this
1 % slice-gen controller top
it generates controller files enclosed by SliceName module without any subdirectories.
In addition, there are other gems I made.