Sha256: d5471db01820f15c9d796d26e3307fed1e8d00bf79ce7fabd2aa1d9cff54e28c
Contents?: true
Size: 796 Bytes
Versions: 10
Compression:
Stored size: 796 Bytes
Contents
unless defined?(Motion::Project::Config) raise "The motion-firebase 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/**/*.rb')).reverse.each do |file| app.files.insert(insert_point, file) end app.vendor_project(File.join(File.dirname(__FILE__), 'vendor/Firebase.framework'), :static, headers_dir: 'Headers', products: ['Firebase']) app.libs += ['/usr/lib/libicucore.dylib'] app.frameworks += ['CFNetwork', 'Security', 'Foundation'] end
Version data entries
10 entries across 10 versions & 1 rubygems