Sha256: 8e93beed8cfe2cb5b01a044a3955a2483247f1eba49c79f857816955eabd709b
Contents?: true
Size: 708 Bytes
Versions: 7
Compression:
Stored size: 708 Bytes
Contents
unless defined?(Motion::Project::Config) raise "The motion-firebase-auth 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 = app.files.find_index { |file| file =~ /^(?:\.\/)?app\// } || 0 Dir.glob(File.join(File.dirname(__FILE__), 'firebase-auth/**/*.rb')).reverse.each do |file| app.files.insert(insert_point, file) end app.vendor_project(File.join(File.dirname(__FILE__), 'vendor/FacebookSDK.framework'), :static, headers_dir: 'Headers', products: ['FacebookSDK']) end
Version data entries
7 entries across 7 versions & 1 rubygems