Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Manifest
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ lib/boxgrinder-core/appliance-validator.rb
lib/boxgrinder-core/astruct.rb
lib/boxgrinder-core/astruct_mixin.rb
lib/boxgrinder-core/compat/color.rb
lib/boxgrinder-core/compat/yaml19.rb
lib/boxgrinder-core/errors.rb
lib/boxgrinder-core/helpers/appliance-config-helper.rb
lib/boxgrinder-core/helpers/appliance-definition-helper.rb
Expand Down
1 change: 0 additions & 1 deletion lib/boxgrinder-core.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,5 @@
# 02110-1301 USA, or see the FSF site: http://www.fsf.org.

module BoxGrinder
require 'boxgrinder-core/compat/yaml19'
require 'boxgrinder-core/compat/color'
end
7 changes: 0 additions & 7 deletions lib/boxgrinder-core/compat/yaml19.rb

This file was deleted.

2 changes: 1 addition & 1 deletion spec/helpers/appliance-transformation-helper-spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ module BoxGrinder

describe ".to_0_9_0" do
it "should remove excludes section" do
appl = "name: test-appl\nos:\n name: fedora\n version: 15\npackages:\n includes:\n - @base\n - emacs\n excludes:\n - this-does-nothing"
appl = "name: test-appl\nos:\n name: fedora\n version: 15\npackages:\n includes:\n - '@base'\n - emacs\n excludes:\n - this-does-nothing"
out = @helper.to_0_9_0(YAML.load(appl))
out['packages'].should == ["@base", "emacs"]
out['excludes'].should == nil
Expand Down