How to specify a Rails 3 scope.limit - with an offset?

Ok, so the answer is, I think:

@posts = Post.published.limit(6).offset(5)

It will retrieve 6 posts, starting from the sixth.


edit2: About the limit([6, 12]), I find that strange:

attr_accessor :limit_value

def limit(value)
  relation = clone
  relation.limit_value = value
  relation
end


def build_arel
    ...
    arel.take(connection.sanitize_limit(@limit_value)) if @limit_value
    ...
end


def sanitize_limit(limit)
    if limit.is_a?(Integer) || limit.is_a?(Arel::Nodes::SqlLiteral)
      limit
    elsif limit.to_s =~ /,/
      Arel.sql limit.to_s.split(',').map{ |i| Integer(i) }.join(',')
    else
      Integer(limit)
    end
  end

So I don't really see how it works with an array. But I obviously missed something. Do you see what?