From 298bad3aa0cfb4ac76536dc57b70cdbaad64f1d5 Mon Sep 17 00:00:00 2001 From: Andre Arko Date: Fri, 5 Mar 2010 12:05:29 -0800 Subject: [PATCH] Require 'yaml', bump to 0.8.5 --- lib/bundler08.rb | 2 +- lib/bundler08/commands/bundle_command.rb | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/bundler08.rb b/lib/bundler08.rb index ba3ebd4918e..56cc4ca8d78 100644 --- a/lib/bundler08.rb +++ b/lib/bundler08.rb @@ -19,7 +19,7 @@ require "bundler08/remote_specification" module Bundler - VERSION = "0.8.4" + VERSION = "0.8.5" class << self attr_writer :logger, :mode diff --git a/lib/bundler08/commands/bundle_command.rb b/lib/bundler08/commands/bundle_command.rb index 3a1c8dd7456..f17d46737a2 100644 --- a/lib/bundler08/commands/bundle_command.rb +++ b/lib/bundler08/commands/bundle_command.rb @@ -37,6 +37,7 @@ def initialize add_option('-b', '--build-options OPTION_FILE', "Specify a path to a yml file with build options for binary gems") do |option_file, options| if File.exist?(option_file) + require 'yaml' options[:build_options] = YAML.load_file(option_file) end end