Sha256: 3e3e0076d27076385c6e8e67d271a51b058bd86d242521559eb1b5ecbf33bc5c

Contents?: true

Size: 1.32 KB

Versions: 42

Compression:

Stored size: 1.32 KB

Contents

require 'pathname'

module Spec
  module Path
    def root
      @root ||= Pathname.new(File.expand_path("../../..", __FILE__))
    end

    def tmp(*path)
      root.join("tmp", *path)
    end

    def home(*path)
      tmp.join("home", *path)
    end

    def default_bundle_path(*path)
      system_gem_path(*path)
    end

    def bundled_app(*path)
      root = tmp.join("bundled_app")
      FileUtils.mkdir_p(root)
      root.join(*path)
    end

    alias bundled_app1 bundled_app

    def bundled_app2(*path)
      root = tmp.join("bundled_app2")
      FileUtils.mkdir_p(root)
      root.join(*path)
    end

    def vendored_gems(path = nil)
      bundled_app("vendor/bundle/#{Gem.ruby_engine}/#{Gem::ConfigMap[:ruby_version]}/#{path}")
    end

    def cached_gem(path)
      bundled_app("vendor/cache/#{path}.gem")
    end

    def base_system_gems
      tmp.join("gems/base")
    end

    def gem_repo1(*args)
      tmp("gems/remote1", *args)
    end

    def gem_repo2(*args)
      tmp("gems/remote2", *args)
    end

    def gem_repo3(*args)
      tmp("gems/remote3", *args)
    end

    def system_gem_path(*path)
      tmp("gems/system", *path)
    end

    def lib_path(*args)
      tmp("libs", *args)
    end

    def bundler_path
      Pathname.new(File.expand_path('../../../lib', __FILE__))
    end

    extend self
  end
end

Version data entries

42 entries across 42 versions & 3 rubygems

Version Path
bundler-1.2.5 spec/support/path.rb
bundler-1.2.4 spec/support/path.rb
bundler-1.3.0.pre.7 spec/support/path.rb
bundler-1.3.0.pre.6 spec/support/path.rb
bundler-1.3.0.pre.5 spec/support/path.rb
bundler-1.3.0.pre.4 spec/support/path.rb
bundler-1.3.0.pre.3 spec/support/path.rb
bundler-1.3.0.pre.2 spec/support/path.rb
bundler-1.3.0.pre spec/support/path.rb
bundler-1.2.3 spec/support/path.rb
bundler-1.2.2 spec/support/path.rb
bundler-1.2.1 spec/support/path.rb
bundler-1.2.0 spec/support/path.rb
bundler-1.2.0.rc.2 spec/support/path.rb
bundler-1.2.0.rc spec/support/path.rb
bundler-1.1.5 spec/support/path.rb
bundler-1.2.0.pre.1 spec/support/path.rb
bundler-1.1.4 spec/support/path.rb
rkh-bundler-1.2.0.pre spec/support/path.rb
bundler-1.2.0.pre spec/support/path.rb