Skip to content
Snippets Groups Projects
Commit 769cab7e authored by Bob W. Hogg's avatar Bob W. Hogg
Browse files

follow the pattern more closely

parent 01b93117
No related branches found
No related tags found
No related merge requests found
require "dependency_collector"
if OS.mac?
require "extend/os/mac/dependency_collector"
elsif OS.linux?
......
def ant_dep(spec, tags)
Dependency.new(spec.to_s, tags)
class DependencyCollector
def ant_dep(spec, tags)
Dependency.new(spec.to_s, tags)
end
end
def ant_dep(spec, tags)
if MacOS.version >= :mavericks
Dependency.new(spec.to_s, tags)
class DependencyCollector
def ant_dep(spec, tags)
if MacOS.version >= :mavericks
Dependency.new(spec.to_s, tags)
end
end
end
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