main
1Module = require('./module')
2OrSpecification = require('./or_specification')
3NotSpecification = require('./not_specification')
4
5module.exports = Specification =
6  or: (other_specification) ->
7    new OrSpecification(this, other_specification)
8  not: ->
9    new NotSpecification(this)