diff options
Diffstat (limited to 'tasks/bin/bundle-platform')
-rwxr-xr-x | tasks/bin/bundle-platform | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tasks/bin/bundle-platform b/tasks/bin/bundle-platform new file mode 100755 index 0000000000..7c77393cb1 --- /dev/null +++ b/tasks/bin/bundle-platform @@ -0,0 +1,15 @@ +#!/usr/bin/env ruby + +platforms = ARGV.shift +old_platforms = Gem.platforms +Gem.platforms = platforms.split(" ").map { |p| Gem::Platform.new(p) } +puts "bundle-platform set Gem.platforms to #{Gem.platforms.map { |p| p.to_s }} (was #{old_platforms.map { |p| p.to_s } })" + +# The rest of this is a normal bundler binstub +require "pathname" +ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../../Gemfile", + Pathname.new(__FILE__).realpath) + +require "rubygems" + +load Gem.bin_path("bundler", "bundle") |