Sha256: d8c8b0fb2e884c3436fb84afa55c1ec5caf1dc428c62b17159a61791872770bc

Contents?: true

Size: 663 Bytes

Versions: 1

Compression:

Stored size: 663 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-nsdate/**/*.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, file)
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sugarcube-1.0.5 lib/sugarcube-nsdate.rb