Sha256: 22c760a62e1981bcd666a70afceed9f88863188c87a60bf4254372a09f36bba4

Contents?: true

Size: 610 Bytes

Versions: 8

Compression:

Stored size: 610 Bytes

Contents

module Buff::Ignore
  module RSpec
    module PathHelpers
      # The tmp path where testing support/workspaces are
      #
      # @return [Pathname]
      def tmp_path
        @_tmp_path ||= app_root.join('tmp').expand_path
      end

      private
        # The "root" of berkshelf
        #
        # @return [Pathname]
        def app_root
          @_app_root ||= Pathname.new(File.expand_path('../../..', __FILE__))
        end

        # Clean the temporary directories
        def clean_tmp_path!
          FileUtils.rm_rf(tmp_path)
          FileUtils.mkdir_p(tmp_path)
        end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
buff-ignore-1.2.0 spec/support/path_helpers.rb
buff-ignore-1.1.1 spec/support/path_helpers.rb
buff-ignore-1.1.0 spec/support/path_helpers.rb
buff-ignore-1.0.4 spec/support/path_helpers.rb
buff-ignore-1.0.3 spec/support/path_helpers.rb
buff-ignore-1.0.2 spec/support/path_helpers.rb
buff-ignore-1.0.1 spec/support/path_helpers.rb
buff-ignore-1.0.0 spec/support/path_helpers.rb