main
 1Module = require('./module')
 2Specification = require('./specification')
 3
 4module.exports = class NotSpecification extends Module
 5  @include Specification
 6
 7  constructor: (other) ->
 8    @other = other
 9
10  matches: (item) ->
11    !@other.matches(item)
12