summaryrefslogtreecommitdiff
path: root/lib/infrastructure/block_specification.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/infrastructure/block_specification.rb')
-rw-r--r--lib/infrastructure/block_specification.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/infrastructure/block_specification.rb b/lib/infrastructure/block_specification.rb
deleted file mode 100644
index fcbec59..0000000
--- a/lib/infrastructure/block_specification.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-require 'specification'
-
-module Booty
- class BlockSpecification
- include Booty::Specification
-
- def initialize(&block)
- @block = block
- end
-
- def matches?(item)
- @block.call(item)
- end
- end
-end