Tuesday, July 25th, 2006
Oops, shows what happens with a hasty release.
Hopefully this release should sort out things.
Sorry I haven’t been around - I’m away enjoying the sun at Jersey.
On other news I’ve managed to disect the amp packet so a Flash Remoting server in ruby should soon be possible. My aim is to use syntax like this in […]
Uncategorized |
Saturday, July 22nd, 2006
This is the first part of a series of tutorials aimed to get you up and running with Juggernaut. They’ll get more complex and I’ll walk you through building a task manager in the next one.
Create a new rails app:
rails juggernaut_app
cd juggernaut_app
Then download the plugin from here and install it in ‘vendor/plugins/’
Now run:
rake install_juggernaut
gem install […]
Uncategorized |
Friday, July 21st, 2006
Release Notes:
Allows communication over port 443, won’t get blocked by firewalls.
Fixes some errors in the push server.
Moved Flash Player up to player 7 (still supported by linux).
Grab it from rubyforge.
Uncategorized |
Friday, July 21st, 2006
There was a slight bug in the push server that meant if anyone lost their connection without ending it properly, for example going on standby, the push server crashed. It was very simple to sort out and I’ll release a new version of Juggernaut with the bug fix soon. I’m looking into rewriting the push […]
Uncategorized |
Thursday, July 20th, 2006
I’ve finished a demo that illustrates some of Juggernuat’s capabilities. You can sign up for an account here. It might be a tad slow as it’s running from my home machine.
Uncategorized |
Thursday, July 20th, 2006
Juggernaut has now been officially released. Go and check out the site, http://juggernaut.rubyforge.org.
Uncategorized |
Monday, July 17th, 2006
Lots of people have been asking when I’m going to post Eribium’s source up on the SVN at Rubyforge in order to have a joint community effort. The code will be posted towards the next release, hopefully in the following weeks if all goes to plan. When that happens, feel free to contact me and […]
Uncategorized |
Tuesday, July 11th, 2006
Adobe have created FABridge, an open source javascript library for use with Flex. With just a few javascript commands you can create, edit and delete Flex components, essentially letting you write JavaScript instead of ActionScript.
For example:
function setMaxPrice(newMaxPrice)
{
var flexApp = FABridge.flash.root();
flexApp.maxPriceSlider().setValue(newMaxPrice);
}
Well, why not take it a step further and integrate it into Rails. With a […]
Uncategorized |
Friday, July 7th, 2006
I’m making a milestone and task tracker - with integrated chat - to showcase Juggernaut’s potential.
Here’s an early screen shot of the app:
Uncategorized |