public
Description: Ambition adapter for Sphinx
Clone URL: git://github.com/technicalpickles/ambitious-sphinx.git
100644 13 lines (12 sloc) 0.244 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
module Ambition #:nodoc:
  module Adapters #:nodoc:
    module AmbitiousSphinx
      class Page < Base
        def page(number)
          raise "Must be greater than 0" unless number > 0
          number
        end
      end
    end
  end
end