rubymotion-community / motion-support

Commonly useful extensions to the standard library for RubyMotion
MIT License
132 stars 28 forks source link

detect_dependencies = false ? #13

Closed wanglian closed 10 years ago

wanglian commented 10 years ago

I'm using motion-support with ProMotion. ProMotion requires

detect_dependencies = true

while motion-support requires

detect_dependencies = false

I'm confused. Any idea to this problem?

tkadauke commented 10 years ago

You can't get motion-support running with autodetected dependencies. It just won't work.

But I'm willing to bet you can get ProMotion running with manually specified dependencies (that is: detect_dependencies = false). See here for details: http://www.rubymotion.com/developer-center/guides/project-management/#_files_dependencies

Better yet, tell the ProMotion developers to switch to motion-require (https://github.com/clayallsopp/motion-require) -- this will solve all dependency issues for you and everyone in the future with very little work on their part.

wanglian commented 10 years ago

Thanks a lot, tkadauke!

j-mcnally commented 10 years ago

This solves a ton of problems for me, i was banging my head against the wall trying to get promotion to work with motion-support. Thanks a ton.