Sha256: b029e61c9c48196c630f198dcff6c248ecfdab7be157eaf546bc602640d69cec

Contents?: true

Size: 1.17 KB

Versions: 10

Compression:

Stored size: 1.17 KB

Contents

require 'ios_toolchain/config'

module IosToolchain
  module Helpers
    LINE_LENGTH = 45

    def config
      @config ||= IosToolchain::Config.new
    end

    def bail(msg="Uh oh, looks like something isn't right")
       puts "\n\n"
       puts "👎   👎   👎   👎   👎   👎   👎   👎   👎   👎   👎   👎 "
       print_msg(msg)
       puts "👎   👎   👎   👎   👎   👎   👎   👎   👎   👎   👎   👎 "
       abort
    end

  private

    def print_msg(msg)
      msg_words = msg.split(" ")
      msg_lines = []

      msg_line = "💩  "
      msg_words.each do |word|
        if msg_line.length + word.length + 2 <= LINE_LENGTH
          msg_line = "#{msg_line} #{word}"
        else
          msg_line = pad_poo(msg_line)
          msg_lines.push(msg_line)
          msg_line = "💩   #{word}"
        end
      end

      last_line = msg_lines.last
      msg_lines.push(pad_poo(msg_line)) unless msg_line =~ /💩$/

      msg_lines.each { |line| puts line }
    end

    def pad_poo(msg_line)
      padding = LINE_LENGTH - msg_line.length - 3
      padding = padding < 0 ? 0 : padding
      "#{msg_line}#{' ' * padding}  💩"
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
ios_toolchain-0.3.3 lib/ios_toolchain/helpers.rb
ios_toolchain-0.3.2 lib/ios_toolchain/helpers.rb
ios_toolchain-0.3.1 lib/ios_toolchain/helpers.rb
ios_toolchain-0.3.0 lib/ios_toolchain/helpers.rb
ios_toolchain-0.2.6 lib/ios_toolchain/helpers.rb
ios_toolchain-0.2.4 lib/ios_toolchain/helpers.rb
ios_toolchain-0.2.3 lib/ios_toolchain/helpers.rb
ios_toolchain-0.2.2 lib/ios_toolchain/helpers.rb
ios_toolchain-0.2.1 lib/ios_toolchain/helpers.rb
ios_toolchain-0.2.0 lib/ios_toolchain/helpers.rb