From 91d9637c33987868df1c02b59d394fe990ac9a80 Mon Sep 17 00:00:00 2001 From: Samuel Giddins Date: Fri, 26 Aug 2016 16:44:29 -0500 Subject: Fix RG 2.0.14 serialization of gemspecs to yaml --- lib/bundler/rubygems_ext.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bundler/rubygems_ext.rb b/lib/bundler/rubygems_ext.rb index 94f502ad51..e5a9be70c9 100644 --- a/lib/bundler/rubygems_ext.rb +++ b/lib/bundler/rubygems_ext.rb @@ -123,7 +123,7 @@ module Gem end def to_yaml_properties - instance_variables.reject {|p| ["@source", "@groups"].include?(p.to_s) } + instance_variables.reject {|p| ["@source", "@groups", "@all_sources"].include?(p.to_s) } end def to_lock -- cgit v1.2.1