Nov 01 2006
New SCRUM site
Mike Vizdos has a new SCRUM resource site up: www.implementingscrum.com. It looks good… with ots of useful information. And it has cartoons.
Check it out.
Nov 01 2006
Mike Vizdos has a new SCRUM resource site up: www.implementingscrum.com. It looks good… with ots of useful information. And it has cartoons.
Check it out.
Nov 01 2006
IEEE Software will have a special issue on test-driven development early next summer, edited by Grigori Melnik and Ron Jeffries. I’m a reviewer (as is Brian Marick and likely several others). Check out the Call for Papers and send in submissions. The deadline is December 1.
Oct 29 2006
Nice post by Defiler on RSpec:
RSpec is mere days away from a new release with greatly improved Rails support.
Since people are currently paying me to write Rails code, rather than plain old standalone Ruby (hint hint), I’ve been waiting for these features before making serious use of RSpec.
As an exercise, I ‘ported’ the acts_as_authenticated controller tests to RSpec. The results were fairly interesting. Subjectively, I find it more readable than the test/unit version. Objectively, one of the test/unit test cases doesn’t get run because there are two methods with the same name.
…
So far, so good. Anyone who thinks that RSpec is ‘only’ about a different set of terminology should give it a serious try first.
(Via ~:caboose.)
Oct 29 2006
Our current project is basically a very structured (i.e. niche/focused/custom) content management system. There are a few places where we want to give the client the ability to edit some HTML page content. The client is tech-savvy, but not in the “I enjoy slinging HTML” way. Ergo, we needed WYSIWYG HTML editing capability. After some research we decided that TinyMCE was the way to go. We just had to make it work the way we wanted it to.
Here are my notes on getting TinyMCE working nicely in a Rails/AJAX environment.
Start by grabbing the rails plugin (and read the material) from here and install it as per the instructions.
Allowable options to uses_tiny_mce are documented here… there are lots of them
I figured that having followed the directions in the above, my work was over. In fact it was just beginning. The above will work fine if you have a page, with a textarea that you want to be WYSIWYG. Our requirements were a bit more involved. The textarea in question was in a partial that was rendered via a remote updater call (via a link_to_remote in a list on the page). The main issue here is that the textarea didn’t exist when the page was rendered… so TinyMCE had to be hooked up to it later… when it was injected into the DOM tree. Some digging through support forums and I found what I needed. This required a bit of java script in the partial… after the textarea:
<%= form_remote_tag :url => {:action => 'edit_page', :id => @page},
:before => "tinyMCE.triggerSave(true,true)" %>
<b>Page Content:</b><br />
<%= text_area :page, :content, :rows => 15, :cols => 150 %>
<br /><br />
<%= submit_tag "Update" %>
<script type="text/javascript">
//<![CDATA[
tinyMCE.execCommand('mceAddControl', true, 'page_content');
//]]>
</script>
<%= end_form_tag %>
The next issue was getting the contents out of TinyMCE and accessible to the parameter construction for the remote call. After a bit of research I ended up with the following:
<%= form_remote_tag :url => {:action => 'edit_page', :id => @page},
:before => "tinyMCE.triggerSave(true,true)" %>
Normally the save is trigger by a page unload, I needed to force it to happen before the remote call happened. Putting the call to force (aka trigger) the save in the :before script of the form submission remote call worked great. So now I had a bigger problem. TinyMCE was getting hooked up to the textarea. If the user picked another page item from the list, the div would be refilled with a different rendering of the partial… with a different textarea node. The old textarea would be gone… out from under TinyMCE. I needed a way to reconnect to the new textarea. More digging turned up this example. It gave me the final bit of the puzzle. My final solution includes the following in application.js:
bTextareaWasTinyfied = false; //this should be global, could be stored in a cookie...
function setTextareaToTinyMCE(sEditorID) {
var oEditor = document.getElementById(sEditorID);
if(oEditor && !bTextareaWasTinyfied) {
tinyMCE.execCommand('mceAddControl', true, sEditorID);
bTextareaWasTinyfied = true;
}
return;
}
function unsetTextareaToTinyMCE(sEditorID) {
var oEditor = document.getElementById(sEditorID);
if(oEditor && bTextareaWasTinyfied) {
tinyMCE.execCommand('mceRemoveControl', true, sEditorID);
bTextareaWasTinyfied = false;
}
return;
}
These two functions are used to disconnect from an existing textarea and reconnect to the newly rendered one. In the list item that causes the rendering:
<%= link_to_remote "<span class=\"listTitle\">#{page.title}</span>",
{:update => "editPage",
:url => {:action => :get_page, :id => page},
:before => "Effect.Fade('editPage',
{duration: 0.25,
queue: 'end',
afterFinish: function(effect) {
unsetTextareaToTinyMCE('page_content')}})",
:complete => "Effect.Appear('editPage', {duration: 0.5, queue: 'end'})"},
:title => "Edit #{page.title}" %>
To avoid visual weirdness the disconnect is delayed until the fade has completed. Once the new version of the partial has been loaded, it’s faded back in. The relavant bit of the partial is here:
<%= form_remote_tag :url => {:action => 'edit_page', :id => @page},
:before => "tinyMCE.triggerSave(true,true)" %>
<b>Page Content:</b><br />
<%= text_area :page, :content, :rows => 15, :cols => 150 %>
<br /><br />
<%= submit_tag "Update" %>
<script type="text/javascript">
//<![CDATA[
setTextareaToTinyMCE('page_content');
//]]>
</script>
<%= end_form_tag %>
The last thing was to add a Done/Cancel button to the form:
<input type="button"
value="Done"
onclick="Effect.Fade('editPage',
{duration: 0.25,
queue: 'end',
afterFinish: function(effect) {
unsetTextareaToTinyMCE('page_content')
}})" />
Now I have a WYSIWYG textarea in a partial that’s rendered via a remote call.. and it all works smoothly and exactly as required.
Oct 24 2006
I’m an OO bigot, plain & simple. One of my soapboxes/sacred-cows/hot-buttons/whatever is encapsulation… or more to the point, the lack of it.
I was writing some code recently and thought it might make a nice example.
I was just starting with a rough idea: I have a Form object that has FormPages. Pages can be moved around, added, deleted, etc. But they need to be ordered… pages of a form get filled out in some logical sequence.
So here’s my initial spec:
context "A form" do
setup do
@form = Form.new
@form.form_pages << FormPage.new(:name => 'one', :number => 3)
@form.form_pages << FormPage.new(:name => 'three', :number => 2)
@form.form_pages << FormPage.new(:name => 'two', :number => 1)
end
specify "should be able to order its pages" do
@form.ordered_pages.collect {|page| page.number}.should_eql [1, 2, 3]
end
end
Some code to make this work:
class Form < ActiveRecord::Base
has_many :form_pages
def ordered_pages
form_pages.sort
end
end
class FormPage < ActiveRecord::Base
belongs_to :form
has_many :form_fields
def <=>(other_page)
number <=> other_page.number
end
end
And that works just fine. BUT I’m totally violating any semblance of encapsulation. Look at FormPage for starters. We’re reaching into other_page and pulling out its number. Not so bad maybe.. it’s an instance of FormPage too. But it’s still breaking encapsulation. It can be done cleaner with a bit of double dispatch fun. Try this:
class FormPage < ActiveRecord::Base
belongs_to :form
has_many :form_fields
def <=>(other_page)
other_page.compare_number_to(number)
end
def compare_number_to(other_page_number)
other_page_number <=> number
end
end
That still works, and things are kept nicely encapsulated.
Now let’s look at the spec:
specify "should be able to order its pages" do
@form.ordered_pages.collect {|page| page.number}.should_eql [1, 2, 3]
end
That collect is leaving a bloody trail in its wake as it hacks its way through the pages, ripping out numbers like the organ collectors in Monty Python’s “The Meaning of Life”. What are the alternatives? Well.. to support sorting we just wrote FormPage#compare_number_to(other_page_number). Let’s see if we can’t use that:
specify "should be able to order its pages" do
@form.ordered_pages.each_with_index do |page, index|
page.compare_number_to(index + 1).should_eql 0
end
end
That does it. Notice that this works because we had that method to use, and the FormPages in the fixture were number sequentially.. we could clean it up even more by numbering the pages starting with 0 (which is much more ruby-esque anyway):
context "A form" do
setup do
@form = Form.new
@form.form_pages << FormPage.new(:name => 'one', :number => 2)
@form.form_pages << FormPage.new(:name => 'three', :number => 1)
@form.form_pages << FormPage.new(:name => 'two', :number => 0)
end
specify "should be able to order its pages" do
@form.ordered_pages.each_with_index do |page, index|
page.compare_number_to(index).should_eql 0
end
end
end
Nice. We can go further… I don’t really care for the exposure of the array of pages. I’d feel better with an addPage method:
class Form < ActiveRecord::Base
has_many :form_pages
def add_page(aPage)
form_pages << aPage
end
def ordered_pages
form_pages.sort
end
end
That lets us have our context setup be like this:
setup do @form = Form.new @form.add_page(FormPage.new(:name => 'one', :number => 2)) @form.add_page(FormPage.new(:name => 'three', :number => 1)) @form.add_page(FormPage.new(:name => 'two', :number => 0)) end
That’s much nicer from a pure OO perspective. “But,” you say, “that’s not overly Rails-like!” So… it IS very OO. It’s up to you where you draw the line. But remember… just because we can ignore encapsulation doesn’t mean we should. Doing so couples our code to the schema, and the goal of OO is to manage and minimize the coupling in our code. For a one-off, throw-away, 15 minute hack.. who cares.. but a mission critical application needs more thought & care. And it’s amazing how many one-off, throw-away, 15 minute hacks turn into mission critical apps.
David Chelimsky suggested making one more step and removing the reliance on the comparison method. After all, that is an implementation detail and relying on it from the spec makes it hard to change… just like any dependancy. So:
context "A form" do
setup do
@form = Form.new
@pages_in_order = [
FormPage.new(:id => 10, :name => 'two', :number => 0),
FormPage.new(:id => 5, :name => 'one', :number => 1),
FormPage.new(:id => 13, :name => 'zero', :number => 2)
]
@form.add_page(@pages_in_order[2])
@form.add_page(@pages_in_order[1])
@form.add_page(@pages_in_order[0])
end
specify "should be able to order its pages" do
@form.ordered_pages.each_with_index do |page, index|
page.should_equal @pages_in_order[index]
end
end
end
This final version is much better. I’ll blame my not seeing it on being sick at the time.
Oct 22 2006
Mike Pence: “BDD is the shizzit… all the goodness of TDD with less religiosity and more practicality”
Oct 14 2006
misconceptions about patterns:
“I just read something called ‘Design Patterns’ aren’t by Mark Dominus.
…
He says that ‘ Everyone already knows that Design Patterns means a library of C++ code templates’. Yes, some people think that. They are wrong. A design patttern is not a library of code templates in any language. If you use Design Patterns by copying code from the book then you are stupid and missing the point. The point of the book is to teach you to think. If you learn how to think about code then you will program better.”
(Via Ralph Johnson.)
Design Patterns came out over 10 years ago. What amazes me is how many “programmers” I’ve met haven’t heard of the book or the topic.
Sep 14 2006
I’ve whipped up a simple TextMate bundle for making rSpec a bit nicer to work with. You can download it here.
You might need to unzip the file (Safari does automatically), and put it in ~/Library/ApplicationSupport/TextMate/Bundles. Note you might have to create the Bundles folder.
At the moment it tweaks the ruby rules for coloring to colour context, specify, setup, and teardown as keywords. It also adds snippets for the same four: context<tab>, specify<tab>, setup<tab>, and teardown<tab>.
Sep 09 2006
I’ve made up a cheat sheet for rSpec. It’s checked into the rSpec repository on rubyforge. You can grab it directly here.
Tweaks will be made as rSpec moves forward.
Update: I should mention, it’s 2 pages with a cmd line reference reference on the second page. Works great printed two sided.

Sep 01 2006
I am pleased to announce that we are opening our doors as a boutique web application/site development and hosting company.
Dave, who heads up development, has over 2 decades of experience developing software.
He is a thought leader in the areas of Object Oriented Techniques and Agile Software Development Practices.
Nancy, who is in charge of hosting, has extensive experience with web application hosting and server management.
We leverage various state of the art techniques and technologies including OS X, Debian Linux, Ruby, Rails, and AJAX, to name a few.
What’s this mean to you as a client? Solid, high quality applications delivered as efficiently as possible.
Because we can host your application as well as develop it, it’s easy for you to have changes and enhancements made.
There’s only one company to deal with, and our development and hosting are tightly integrated, providing you with the quickest turnaround time possible.
Not only do we use the lastest, most productive technologies available, but we’ve been around long enough to
have a deep understanding of the issues involved in developing and maintaining high quality, robust applications.
Legend has it that Pablo Picasso was sketching in the park when a woman approached him and asked him to sketch her.
After studying her for a moment, he used a single pencil stroke to create her portrait.
When she asked the price, he replied “Five thousand dollars.”
The woman was flabergasted: “How could you want so much money for this picture? It only took you a second to draw it!”
To which Picasso responded, “Madame, it took me my entire life.”
Experience counts. Who do you want developing your applications?
For more information, contact us at info ‘at’ daveastels.com
Stay Hungry, Stay Foolish!
Steve Jobs
In memory of Steve Jobs