Sha256: af526a59a823ef41a4de719d673bda187d6d82c87aac4c69a75f41f85fe95a36
Contents?: true
Size: 662 Bytes
Versions: 37
Compression:
Stored size: 662 Bytes
Contents
unless defined?(Motion::Project::Config) raise "The sugarcube 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__), 'sugarcube-timer/**/*.rb')).reverse.each do |file| app.files.insert(insert_point, file) end time = File.join(File.dirname(__FILE__), 'sugarcube-numbers/time.rb') app.files.insert(insert_point, time) end
Version data entries
37 entries across 37 versions & 1 rubygems