Sha256: cd044568a8c500baf71765a7029ba95aed648c0f0e86b63eb3ba69fa484e739d

Contents?: true

Size: 972 Bytes

Versions: 11

Compression:

Stored size: 972 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|
  teacup_lib = File.join(File.dirname(__FILE__), 'teacup')
  platform = app.respond_to?(:template) ? app.template : :ios
  teacup_platform_lib = File.join(File.dirname(__FILE__), "teacup-#{platform}")
  unless File.exists? teacup_platform_lib
    raise "Sorry, the platform #{platform.inspect} is not supported by teacup"
  end

  # 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 = app.files.find_index { |file| file =~ /^(?:\.\/)?app\// } || 0

  Dir.glob(File.join(teacup_platform_lib, '**/*.rb')).reverse.each do |file|
    app.files.insert(insert_point, file)
  end
  Dir.glob(File.join(teacup_lib, '**/*.rb')).reverse.each do |file|
    app.files.insert(insert_point, file)
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
teacup-2.1.4 lib/teacup.rb
teacup-2.1.3 lib/teacup.rb
teacup-2.1.2 lib/teacup.rb
teacup-2.1.1 lib/teacup.rb
teacup-2.1.0 lib/teacup.rb
teacup-2.0.6 lib/teacup.rb
teacup-2.0.5 lib/teacup.rb
teacup-2.0.4 lib/teacup.rb
teacup-2.0.3 lib/teacup.rb
teacup-2.0.2 lib/teacup.rb
teacup-2.0.0 lib/teacup.rb