Sha256: 6af88e3071106aab557ae3a317c49bd8c026fe75cb665efe16f6ec484f97ebd6

Contents?: true

Size: 555 Bytes

Versions: 2

Compression:

Stored size: 555 Bytes

Contents

require "bundler/gem_tasks"
$:.unshift("/Library/RubyMotion/lib")
require 'motion/project'

Motion::Project::App.setup do |app|
  app.name = 'testSuite'
  app.identifier = 'io.bubblewrap.testSuite'
  
  app.development do
    app.files << './lib/tests/test_suite_delegate.rb'
    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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bubble-wrap-0.3.1 Rakefile
bubble-wrap-0.3.0 Rakefile