Skip to content
Snippets Groups Projects
Commit 158b7047 authored by Jack Nagel's avatar Jack Nagel
Browse files

Add small DSL for defining comparators

parent 93baea7e
No related branches found
No related tags found
No related merge requests found
......@@ -125,6 +125,13 @@ class Version
m = /_([^_]+)/.match(stem)
return m.captures.first unless m.nil?
end
# DSL for defining comparators
class << self
def compare &blk
send(:define_method, '<=>', &blk)
end
end
end
class VersionSchemeDetector
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment