Rakefile in bubble-wrap-0.1.1 vs Rakefile in bubble-wrap-0.1.2
- old
+ new
@@ -1,13 +1,26 @@
-require "bundler/gem_tasks"
\ No newline at end of file
+require "bundler/gem_tasks"
+$:.unshift("/Library/RubyMotion/lib")
+require 'motion/project'
+
+Motion::Project::App.setup do |app|
+ app.name = 'MotionLibTestSuite'
+
+ app.development do
+ app.files << './lib/tests/test_suite_delegate.rb'
+ app.delegate_class = 'TestSuiteDelegate'
+ end
+
+ app.files += Dir.glob('./lib/bubble-wrap/**.rb')
+end