Plugins

Here are some of the rails plugins that I am currently working on.
Dojo Helpers Plugin
Inline Editor Plugin w/ Selection

Dojo Helpers Plugin

This is a plugin that is design to assist in the usage of the dojo toolkit with your rails application. It is still very much in the works, so any recommendation are definitely welcome. It is designed to be used with Rails 2+ and Dojo 1.1.   The full dojo 1.1 library [...]

Dojo plugin for rails is in the works.

Coming Soon! 
I am working on a plugin that will assist in integrating the Dojo Toolkit libraries into your rails applications.  I have made good progress so far.  It has a variety of helpers to make short work to inlude the dojo core library and specify the requires, create dijits, use dojo functions and experiment with dojox.  Currently [...]

Rails in place editing plugin w/ selection

As of Rails 2.0 the in_place_editor methods have been moved into a plugin. You can download this plugin here. For some items I needed to have a dropdown selection instead of a text field. To add this functionality, I added two methods to the plugin.
Here is the full contents of ‘in_place_macros_helper.rb’ http://pastie.caboo.se/169443
Replace the contents of [...]

IDE/Editor for Rails

If any of you out there are looking for an IDE to use for RoR development then you need to try Aptana IDE. Once you have downloaded and installed the IDE, install the RadRails plugin. Since I have began using it, it has been a great help. It [...]

My favorite rails plugins

These are the 10 11 plugins that I have found to be the biggest timesavers. Providing me with functions and features that I just won’t go without.

stickies - Stickies is a plugin for Ruby on Rails that provides some easy to use yet powerful features for displaying status messages. It’s a replacement for [...]

President’s Day Weekend

Long weekend are great!  Hopefully I should get a lot accomplished on loadmotions over the next couple of days.  I think I’m going to switch over to ExtJS for the main application.  From the experimenting that I’ve done, it just feels lighter and more responsive.  There are a few things I will probably still use [...]

My JS Framework Dilema

I have been using primarily two frameworks on my various projects. Usually I use the Dojo Toolkit, but recently I’ve become fond of ExtJS. They are both great setups with loads of functionality. I’m trying to determine which types of sites each fits best in. From my experience, ExtJS seems [...]

Google Analytics Rails Plugin w/ new tracking code

If you using the Google Analytics plugin, but want to use the new tracking code. Then replace the self.included(base) definition in “google_analytics/lib/google_analytics.rb” with this one:
def self.included(base) #nodoc#

base.class_eval do

@@no_analytics_key_message = ‘Add your analytics key with code like GoogleAnalyticsHelper.analytics_key = “ZZ-NNNNNN-N”‘

[...]

Bookmarks for December 26th through February 9th

These are my links for December 26th through February 9th:

Who? | Fear of Fish -
12 freeware icons of Web 2 Social Bookmarks -
ZSFA — Rails Is A Ghetto (2007-12-31) -
Utu: here -
caboose -
Scripteka :: Prototype extensions library -
uvlayer -
Home // Current -
Techmeme -
MapReduce for Ruby: Ridiculously Easy Distributed Programming -
XFN: Introduction and Examples -
Jester -
Juixe [...]

acts_as_activity_logged

This was a very helpful rails plugin for my current project. It allows you to log whenever a object is added, modified or removed and who the action was performed by. I did make a couple changes to the plugin to be more in line with Rails 2. First I modified the [...]