Sha256: 9817dc57f24915b4f4ce94d85528efedf6b0d3c6be1f5b2ca4d1e09585e8badf

Contents?: true

Size: 1.7 KB

Versions: 69

Compression:

Stored size: 1.7 KB

Contents

require "spec_helper"

describe "Bundler.setup with multi platform stuff" do
  it "raises a friendly error when gems are missing locally" do
    gemfile <<-G
      source "file://#{gem_repo1}"
      gem "rack"
    G

    lockfile <<-G
      GEM
        remote: file:#{gem_repo1}/
        specs:
          rack (1.0)

      PLATFORMS
        #{local_tag}

      DEPENDENCIES
        rack
    G

    ruby <<-R
      begin
        require 'bundler'
        Bundler.setup
      rescue Bundler::GemNotFound => e
        puts "WIN"
      end
    R

    out.should == "WIN"
  end

  it "will resolve correctly on the current platform when the lockfile was targetted for a different one" do
    lockfile <<-G
      GEM
        remote: file:#{gem_repo1}/
        specs:
          nokogiri (1.4.2-java)
            weakling (= 0.0.3)
          weakling (0.0.3)

      PLATFORMS
        java

      DEPENDENCIES
        nokogiri
    G

    system_gems "nokogiri-1.4.2"

    simulate_platform "x86-darwin-10"
    gemfile <<-G
      source "file://#{gem_repo1}"
      gem "nokogiri"
    G

    should_be_installed "nokogiri 1.4.2"
  end

  it "will add the resolve for the current platform" do
    lockfile <<-G
      GEM
        remote: file:#{gem_repo1}/
        specs:
          nokogiri (1.4.2-java)
            weakling (= 0.0.3)
          weakling (0.0.3)

      PLATFORMS
        java

      DEPENDENCIES
        nokogiri
    G

    system_gems "nokogiri-1.4.2", "platform_specific-1.0-x86-darwin-100"

    simulate_platform "x86-darwin-100"

    gemfile <<-G
      source "file://#{gem_repo1}"
      gem "nokogiri"
      gem "platform_specific"
    G

    should_be_installed "nokogiri 1.4.2", "platform_specific 1.0 x86-darwin-100"
  end
end

Version data entries

69 entries across 69 versions & 7 rubygems

Version Path
bundler-1.2.5 spec/runtime/platform_spec.rb
bundler-1.2.4 spec/runtime/platform_spec.rb
bundler-1.2.3 spec/runtime/platform_spec.rb
bundler-1.2.2 spec/runtime/platform_spec.rb
bundler-1.2.1 spec/runtime/platform_spec.rb
bundler-1.2.0 spec/runtime/platform_spec.rb
bundler-1.2.0.rc.2 spec/runtime/platform_spec.rb
bundler-1.2.0.rc spec/runtime/platform_spec.rb
bundler-1.1.5 spec/runtime/platform_spec.rb
bundler-1.2.0.pre.1 spec/runtime/platform_spec.rb
bundler-1.1.4 spec/runtime/platform_spec.rb
rkh-bundler-1.2.0.pre spec/runtime/platform_spec.rb
bundler-1.2.0.pre spec/runtime/platform_spec.rb
bundler-1.1.3 spec/runtime/platform_spec.rb
bundler-1.1.2 spec/runtime/platform_spec.rb
bundler-1.1.1 spec/runtime/platform_spec.rb
bundler-1.1.0 spec/runtime/platform_spec.rb
bundler-1.1.rc.8 spec/runtime/platform_spec.rb
bundler-1.0.22 spec/runtime/platform_spec.rb
bundler-1.1.rc.7 spec/runtime/platform_spec.rb