Sha256: 69b47166f59b0485b13defd1f567b75d4b857a42dd30daedf097dd2a700dde1c
Contents?: true
Size: 591 Bytes
Versions: 4
Compression:
Stored size: 591 Bytes
Contents
unless defined?(Motion::Project::Config) raise "The sugarcube gem must be required within a RubyMotion project Rakefile." end require 'sugarcube' 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__), App.template.to_s, 'sugarcube-events/**/*.rb')).reverse.each do |file| app.files.insert(insert_point, file) end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
sugarcube-2.1.0 | lib/sugarcube-events.rb |
sugarcube-2.0.2 | lib/sugarcube-events.rb |
sugarcube-2.0.1 | lib/sugarcube-events.rb |
sugarcube-2.0.0 | lib/sugarcube-events.rb |