Sha256: 86b280a4072ac24ad70296b8519181c33db6e3aa49db0414cb9a336c5993cc13
Contents?: true
Size: 448 Bytes
Versions: 1
Compression:
Stored size: 448 Bytes
Contents
unless defined?(Motion::Project::Config) raise "The ProMotion gem must be required within a RubyMotion project Rakefile." end require 'motion_print' Motion::Project::App.setup do |app| core_lib = File.join(File.dirname(__FILE__), 'ProMotion') insert_point = app.files.find_index { |file| file =~ /^(?:\.\/)?app\// } || 0 Dir.glob(File.join(core_lib, '**/*.rb')).reverse.each do |file| app.files.insert(insert_point, file) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ProMotion-3.0.0 | lib/ProMotion.rb |