summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/bundler08.rb2
-rw-r--r--lib/bundler08/commands/bundle_command.rb1
2 files changed, 2 insertions, 1 deletions
diff --git a/lib/bundler08.rb b/lib/bundler08.rb
index ba3ebd4918..56cc4ca8d7 100644
--- a/lib/bundler08.rb
+++ b/lib/bundler08.rb
@@ -19,7 +19,7 @@ require "bundler08/dependency"
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 3a1c8dd745..f17d46737a 100644
--- a/lib/bundler08/commands/bundle_command.rb
+++ b/lib/bundler08/commands/bundle_command.rb
@@ -37,6 +37,7 @@ class Gem::Commands::BundleCommand < Gem::Command
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