[Radiant] extension dependencies in ray

2009-09-09 Thread john muhl
On Sat, Sep 5, 2009 at 10:12 AM, Sean Cribbs seancri...@gmail.com wrote: Looks like it's time for another release of Radiant: WHAT'S NEW IN THIS RELEASE? * Allow extensions to declare dependencies [Josh French] does this mean that i can safely rip out all the code in ray that tries to allow

Re: [Radiant] extension dependencies in ray

2009-09-09 Thread Sean Cribbs
This is a *runtime* dependency, not an install-time one. Basically, an extension can do this: extension_config do |config| config.extension paperclipped end The initializer will check that paperclipped is available in the app and error out if not. Sean john muhl wrote: On Sat, Sep 5,

Re: [Radiant] extension dependencies in ray

2009-09-09 Thread john muhl
thanks for the details. guess that code stays for now. On Wed, Sep 9, 2009 at 1:32 PM, Sean Cribbs seancri...@gmail.com wrote: This is a *runtime* dependency, not an install-time one. Basically, an extension can do this: extension_config do |config|  config.extension paperclipped end The