Sha256: 4e6fe96d27fa1435471195bb3c92d685a3b07234388881064e75642a18439dd4

Contents?: true

Size: 970 Bytes

Versions: 6

Compression:

Stored size: 970 Bytes

Contents

require 'pathname'
ROOT = Pathname.new(File.expand_path('../../', __FILE__))
$LOAD_PATH.unshift((ROOT + 'lib').to_s)
$LOAD_PATH.unshift((ROOT + 'spec').to_s)

require 'bundler/setup'
require 'bacon'
require 'mocha-on-bacon'
require 'cocoapods'

require 'cocoapods_plugin'

#-----------------------------------------------------------------------------#

module Pod
  # Disable the wrapping so the output is deterministic in the tests.
  #
  UI.disable_wrap = true

  # Redirects the messages to an internal store.
  #
  module UI
    @output = ''
    @warnings = ''

    class << self
      attr_accessor :output
      attr_accessor :warnings

      def puts(message = '')
        @output << "#{message}\n"
      end

      def warn(message = '', _actions = [])
        @warnings << "#{message}\n"
      end

      def print(message)
        @output << message
      end
    end
  end
end

#-----------------------------------------------------------------------------#

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
cocoapods-stats-0.6.1 spec/spec_helper.rb
cocoapods-stats-0.6.0 spec/spec_helper.rb
cocoapods-stats-0.5.3 spec/spec_helper.rb
cocoapods-stats-0.5.2 spec/spec_helper.rb
cocoapods-stats-0.5.1 spec/spec_helper.rb
cocoapods-stats-0.5.0 spec/spec_helper.rb