2015-11-17 20:49:10 +08:00
|
|
|
require "dependency_collector"
|
|
|
|
|
|
|
|
class DependencyCollector
|
2018-01-18 20:54:21 +00:00
|
|
|
module Compat
|
|
|
|
def parse_string_spec(spec, tags)
|
2018-07-09 15:29:40 +01:00
|
|
|
odisabled "'depends_on ... => :run'" if tags.include?(:run)
|
2018-03-25 10:11:24 +01:00
|
|
|
super
|
2018-01-18 20:54:21 +00:00
|
|
|
end
|
2015-11-16 23:18:31 +08:00
|
|
|
end
|
2016-07-16 22:14:55 +01:00
|
|
|
|
2018-01-18 20:54:21 +00:00
|
|
|
prepend Compat
|
2015-11-16 23:18:31 +08:00
|
|
|
end
|