Sha256: 919afb47e71599f18fa505f0df9c24f7d397e8a1507447e8424eb64b753d7911
Contents?: true
Size: 549 Bytes
Versions: 43
Compression:
Stored size: 549 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-repl/**/*.rb')).reverse.each do |file| app.files.insert(insert_point, file) end end
Version data entries
43 entries across 43 versions & 1 rubygems
Version | Path |
---|---|
sugarcube-1.0.2 | lib/sugarcube-repl.rb |
sugarcube-1.0.1 | lib/sugarcube-repl.rb |
sugarcube-1.0.0 | lib/sugarcube-repl.rb |