BigW Consortium Gitlab

utils.rb 632 Bytes
Newer Older
1 2 3 4 5 6 7
module Gitlab
  module Utils
    extend self

    # Run system command without outputting to stdout.
    #
    # @param  cmd [Array<String>]
Valery Sizov committed
8
    # @return [Boolean]
9
    def system_silent(cmd)
10
      Popen.popen(cmd).last.zero?
11
    end
12 13 14 15

    def force_utf8(str)
      str.force_encoding(Encoding::UTF_8)
    end
16 17 18 19 20 21 22 23

    def to_boolean(value)
      return value if [true, false].include?(value)
      return true if value =~ /^(true|t|yes|y|1|on)$/i
      return false if value =~ /^(false|f|no|n|0|off)$/i

      nil
    end
24 25 26 27 28 29 30 31

    def boolean_to_yes_no(bool)
      if bool
        'Yes'
      else
        'No'
      end
    end
32 33
  end
end