If anyone is interested I just tried experimenting with a little
something.
I installed a ruby file system watcher: http://paulhorman.com/filesystemwatcher/
And setup this small little script:
#!/usr/bin/env ruby
require "filesystemwatcher"
watcher = FileSystemWatcher.new()
watcher.addDirectory("src", "*.js")
watcher.sleepTime = 5
watcher.start { |status,file|
puts "Building"
`make jquery`
}
watcher.join()
So I basically run it with `./livebuild.rb&` inside the jQuery
directory, whenever I make a modification the script automatically
rebuilds the jquery file.
Then again, that jDevCloud idea has much more promise since you can
use trunk, your own get clone, individual jquery versions, and even
edit in-project versions.
--
~Daniel Friesen (Dantman, Nadir-Seen-Fire)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery Development" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/jquery-dev?hl=en
-~----------~----~----~----~------~----~------~--~---