Sha256: c1f7cadeabd01243dd785052f2cd124b4c9cef60a5525dafca34af9d26682216
Contents?: true
Size: 1.1 KB
Versions: 2
Compression:
Stored size: 1.1 KB
Contents
# encoding: utf-8 unless defined?(Motion::Project::Config) raise "The PackingPeanut gem must be required within a RubyMotion project Rakefile." end # WHAT ARE WE? platform = Motion::Project::App.respond_to?(:template) ? Motion::Project::App.template : :ios if platform.to_s.start_with?('ios') platform_name = 'ios' elsif platform.to_s.start_with?('android') platform_name = 'android' end # necessary for Android gem dependency as of 5/9/2015 require "moran" if platform_name == "android" Motion::Project::App.setup do |app| platform_lib = File.join(File.dirname(__FILE__), "PackingPeanut-#{platform_name}") unless File.exists? platform_lib raise "Sorry, the platform #{platform.inspect} (aka #{platform_name}) is not supported by PackingPeanut" 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(platform_lib, '**/*.rb')).reverse.each do |file| app.files.insert(insert_point, file) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
PackingPeanut-1.1.0 | lib/PackingPeanut.rb |
PackingPeanut-1.0.0 | lib/PackingPeanut.rb |