# File lib/fast_gettext/vendor/mofile.rb, line 176
        def next_prime(seed)
          require 'mathn'
          prime = Prime.new
          while current = prime.succ
            return current if current > seed
          end
        end