Sha256: fcc615dd7cc2df627076c0900d82bcfd7fede1c2f6649c21c7f73e8fcd3ac02f
Contents?: true
Size: 800 Bytes
Versions: 2
Compression:
Stored size: 800 Bytes
Contents
require 'motion-cocoapods' require 'bubble-wrap' require 'ProMotion' unless defined?(Motion::Project::Config) raise "This file must be required within a RubyMotion project Rakefile." end Motion::Project::App.setup do |app| # Add all the files in our lib folder # WE ADD THESE AT THE END OF THE FILE LISTING! # This way, we can be sure that ProMotion itself has been compiled, but before any of the app's files are compiled. Dir.glob(File.join(File.dirname(__FILE__), 'pro_motion_slide_menu/**/*.rb')).each do |file| app.files << file end # We have a cocoapod that we rely on # THIS WON'T WORK until the following issue is resolved with motion-cocoapods # https://github.com/HipByte/motion-cocoapods/issues/38 # # app.pods do # pod 'PKRevealController' # end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
pro_motion_slide_menu-0.0.4 | lib/pro_motion_slide_menu.rb |
pro_motion_slide_menu-0.0.3 | lib/pro_motion_slide_menu.rb |