Rakefile in bubble-wrap-0.2.0 vs Rakefile in bubble-wrap-0.2.1

- old
+ new

@@ -5,10 +5,14 @@ Motion::Project::App.setup do |app| app.name = 'MotionLibTestSuite' app.development do app.files << './lib/tests/test_suite_delegate.rb' - app.delegate_class = 'TestSuiteDelegate' + app.delegate_class = 'TestSuiteDelegate' end app.files += Dir.glob('./lib/bubble-wrap/**.rb') + wrapper_files = app.files.dup + pollution_file = Dir.glob('./lib/pollute.rb')[0] + app.files << pollution_file + app.files_dependencies pollution_file => wrapper_files end