mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-25 20:32:33 +00:00
67 lines
1.3 KiB
Ruby
67 lines
1.3 KiB
Ruby
class NilClass
|
|
def to_bool
|
|
false
|
|
end
|
|
|
|
def blank?
|
|
true
|
|
end
|
|
end
|
|
|
|
class String
|
|
def to_bool
|
|
%w{1 true yes}.include? self.downcase
|
|
end
|
|
|
|
def blank?
|
|
empty?
|
|
end
|
|
|
|
def to_c_string
|
|
'"' + self.gsub(%r{"}, '\"') + '"'
|
|
end
|
|
|
|
def to_cpp_string
|
|
self.to_c_string + "s"
|
|
end
|
|
|
|
def to_u8_cpp_string
|
|
"u8" + self.to_c_string + "s"
|
|
end
|
|
end
|
|
|
|
class TrueClass
|
|
def to_bool
|
|
self
|
|
end
|
|
end
|
|
|
|
class FalseClass
|
|
def to_bool
|
|
self
|
|
end
|
|
end
|
|
|
|
class Array
|
|
def to_hash_by key = nil, value = nil, &block
|
|
elements = case
|
|
when block_given? then self.collect(&block)
|
|
when key.nil? then self.collect { |e| [ e, true ] }
|
|
else self.collect { |e| e.is_a?(Hash) ? [ e[key], value.nil? ? e : e[value] ] : [ e.send(key), value.nil? ? e : e.send(value) ] }
|
|
end
|
|
|
|
return Hash[ *elements.flatten ]
|
|
end
|
|
|
|
def for_target!
|
|
self.flatten!
|
|
|
|
self.reject! { |f| %r{(?:/|^)linux[_.]}.match f } unless $building_for[:linux]
|
|
self.reject! { |f| %r{(?:/|^)macos[_.]}.match f } unless $building_for[:macos]
|
|
self.reject! { |f| %r{(?:/|^)unix[_.]}.match f } if $building_for[:windows]
|
|
self.reject! { |f| %r{(?:/|^)windows[_.]}.match f } unless $building_for[:windows]
|
|
|
|
return self
|
|
end
|
|
end
|