37 lines
791 B
Ruby
37 lines
791 B
Ruby
class RubyRequirement < Requirement
|
|
fatal true
|
|
default_formula "ruby"
|
|
|
|
def initialize(tags)
|
|
@version = tags.shift if /(\d\.)+\d/ =~ tags.first
|
|
raise "RubyRequirement requires a version!" unless @version
|
|
super
|
|
end
|
|
|
|
satisfy build_env: false do
|
|
which_all("ruby").detect do |ruby|
|
|
version = /\d\.\d/.match Utils.popen_read(ruby, "--version")
|
|
next unless version
|
|
Version.create(version.to_s) >= Version.create(@version)
|
|
end
|
|
end
|
|
|
|
def message
|
|
s = "Ruby #{@version} is required to install this formula."
|
|
s += super
|
|
s
|
|
end
|
|
|
|
def inspect
|
|
"#<#{self.class.name}: #{name.inspect} #{tags.inspect} version=#{@version.inspect}>"
|
|
end
|
|
|
|
def display_s
|
|
if @version
|
|
"#{name} >= #{@version}"
|
|
else
|
|
name
|
|
end
|
|
end
|
|
end
|