Sha256: 64a78a7708b93ff85e59078c293ceda5fec30b9cc618268fa45c9ddce89073f0

Contents?: true

Size: 833 Bytes

Versions: 6

Compression:

Stored size: 833 Bytes

Contents

unless defined?(Motion::Project::Config)
  raise "The teacup gem must be required within a RubyMotion project Rakefile."
end


Motion::Project::App.setup do |app|
  # scans app.files until it finds app/ (the default)
  # if found, it inserts just before those files, otherwise it will insert to
  # the end of the list
  insert_point = 0
  app.files.each_index do |index|
    file = app.files[index]
    if file =~ /^(?:\.\/)?app\//
      # found app/, so stop looking
      break
    end
    insert_point = index + 1
  end

  app.files.insert(insert_point, File.join(File.dirname(__FILE__), 'dummy.rb'))
  Dir.glob(File.join(File.dirname(__FILE__), 'teacup/**/*.rb')).reverse.each do |file|
    app.files.insert(insert_point, file)
  end

  app.vendor_project File.join(File.dirname(__FILE__), '../vendor/TeacupDummy'), :static
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
teacup-1.2.2 lib/teacup.rb
teacup-1.0.4 lib/teacup.rb
teacup-1.0.3 lib/teacup.rb
teacup-1.0.2 lib/teacup.rb
teacup-1.0.1 lib/teacup.rb
teacup-1.0.0 lib/teacup.rb