Sha256: 025b4c5a1cdfd64710ecaed0b3f57adc4003aad9843629c85226cca348adcb65

Contents?: true

Size: 1.15 KB

Versions: 1

Compression:

Stored size: 1.15 KB

Contents

require "bubble-wrap/version"

unless defined?(Motion::Project::Config)
  raise "This file must be required within a RubyMotion project Rakefile."
end

module Motion
  module Project
    class Config
      # HACK NEEDED since RubyMotion doesn't support full path
      # dependencies.
      def files_dependencies(deps_hash)
        res_path = lambda do |x|
          path = /^\.|\/Users\//.match(x) ? x : File.join('.', x)
          unless @files.include?(path)
            App.fail "Can't resolve dependency `#{x}' because #{path} is not in #{@files.inspect}"
          end
          path
        end
        deps_hash.each do |path, deps|
          deps = [deps] unless deps.is_a?(Array)
          @dependencies[res_path.call(path)] = deps.map(&res_path)
        end
      end
    end
  end
end


Motion::Project::App.setup do |app|
  wrapper_files = []
  Dir.glob(File.join(File.dirname(__FILE__), 'bubble-wrap/**/*.rb')).each do |file|
    app.files << file
    wrapper_files << file
  end
  pollution_file = File.expand_path(File.join(File.dirname(__FILE__), 'pollute.rb'))
  app.files.unshift pollution_file
  app.files_dependencies pollution_file => wrapper_files
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bubble-wrap-0.3.0 lib/bubble-wrap.rb