summaryrefslogtreecommitdiff
path: root/src/specification.coffee
blob: 6a98febd088c6fe23cf3b439df63dd6bcc115c90 (plain)
1
2
3
4
5
6
Module = require('./module')
OrSpecification = require('./or_specification')

module.exports = Specification =
  or: (other_specification) ->
    new OrSpecification(this, other_specification)