From e7a2496fda92ff4e39c127b065bf51ed6301e772 Mon Sep 17 00:00:00 2001 From: Yehuda Katz + Carl Lerche Date: Mon, 20 Jul 2009 18:02:24 -0700 Subject: Vendor the bundler project --- railties/lib/vendor/bundler/bin/gem_bundler | 40 +++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100755 railties/lib/vendor/bundler/bin/gem_bundler (limited to 'railties/lib/vendor/bundler/bin/gem_bundler') diff --git a/railties/lib/vendor/bundler/bin/gem_bundler b/railties/lib/vendor/bundler/bin/gem_bundler new file mode 100755 index 0000000000..7a8771efee --- /dev/null +++ b/railties/lib/vendor/bundler/bin/gem_bundler @@ -0,0 +1,40 @@ +#!/usr/bin/env ruby +require "optparse" +require "bundler" + +options = {} + +parser = OptionParser.new do |op| + op.banner = "Usage: gem_bundler [OPTIONS] [PATH]" + + op.on("-m", "--manifest MANIFEST") do |manifest| + options[:manifest] = manifest + end + + op.on_tail("-h", "--help", "Show this message") do + puts op + exit + end +end +parser.parse! + +options[:path] = ARGV.shift + +unless options[:path] + puts parser + puts %( + [PATH] must be specified + ) + exit +end + +unless options[:manifest] && File.exist?(options[:manifest]) + puts parser + puts %( + MANIFEST must be a valid manifest file + ) + exit +end + + +Bundler.run(options) \ No newline at end of file -- cgit v1.2.3