Recent Blog Posts

  • Competition and Knowledge-Sharing
    By Johanna Rothman - Wednesday Aug, 27
    In Knowledge Management Needs to be Agile, Too, I said If you put people in competition with each other *in any way*, they will have dis-incentives to share their knowledge. John, in his comment on ... more »
  • Test Automation Class in Virginia
    By Jared Richardson - Monday Aug, 25
    The first scheduled class for the NFJS One venture is now official! And we don't even have the website live yet. :) This class will be a good mix of the "Why" as well as the "How". The goal is for yo... more »
  • ReadWriteWeb on Dirty Data
    By Michael Nygard - Sunday Aug, 24
    A short while back, I did a brief series on the value of "dirty data"---copious amounts of unstructured, non-relational data created by the many interactions user have with your site and eac... more »
  • rspec_validation_expectations gem released
    By Matthew Bass - Friday Aug, 22
    I just released a new gem on GitHub that provides some common validation expectations to rspec. Instead of writing specs to verify that your models are handling validation correctly, these expectation... more »
  • “Seeing Your Work” Podcast Posted
    By Johanna Rothman - Friday Aug, 22
    I’ve posted my “Seeing Your Work” podcast. It’s available on libsyn and through iTunes. If you’d like me to interview you or you interview me, lemme know. ... more »

In the Spotlight - Matthew Bass

Matthew Bass

Software Developer & Entrepreneur

Matthew Bass is an independent software developer, entrepreneur, speaker, and writer. He has over ten years of experience across a diverse set of technologies and has worked at places like SAS Institute, the world's largest privately held software company. An agilist from the very beginning, he continues evangelizing and experimenting with pair programming, test-first and behavior-driven development, and continuous integration. Matthew has spoken at several regional and national software conferences and regularly writes for publications like InfoQ.























Presentations by Matthew Bass

Pragmatic Pair Programming

Pair programming. It's nasty. It's evil. The only people who actually do it are those Extreme Programming zealots, and we all know what they're like. Pair programming deserves to be condemned to the trash heap of practices that failed, destined to go down in history as the black sheep of agility. Right? Well, maybe not. Maybe pair programming does have some value after all. Maybe it can be redeemed if done the right way, the pragmatic way. "










Pelargir
Musings on software and life from Matthew Bass.


Matthew Bass's complete blog can be found at: http://matthewbass.com

Friday, August 22, 2008

I just released a new gem on GitHub that provides some common validation expectations to rspec. Instead of writing specs to verify that your models are handling validation correctly, these expectations simply check that the validation is getting declared correctly in your model. For example:

describe User do
  it_should_validate_presence_of :first_name, :last_name, :email
  it_should_validate_numericality_of :zip
  it_should_validate_uniqueness_of :email
end

Since the expectations never hit the database, they are also faster than testing the traditional way. It’s dead simple to install on Rails 2.1 or later:

script/plugin install git://github.com/pelargir/rspec_validation_expectations.git

The expectations become available to your specs immediately.


Thursday, August 21, 2008

Raleigh’s first RubyCamp is coming to Red Hat on October 18th. This is a similar format to BarCamp in that the presentations are pitched the morning of the conference, and attendees self organize the remainder of the day. Relevance will be running their popular Refactotum workshop in the morning. The conference is free, but attendance is capped at 200 so visit the wiki to grab your spot.


Sunday, August 10, 2008

vizres renders the body of an HTTP response from inside a Rails functional test. It used to be a plugin, but now it’s a gem. Why? Because Rails gems are the new hotness. Now go get it.


Friday, August 8, 2008

I’m at the Ruby Hoedown in Huntsville this weekend. Being around so many brilliant geeks encouraged me to release a gem I’ve had sitting in the hopper for several weeks.

finder_filter encapsulates a pattern I find myself using quite frequently in Rails. Namely, looking up an instance variable before an action. For example:

class UsersController < ActionController::Base
  before_filter :find_user, :only => [:show, :edit]
  
  def show
    # do something with @user
  end
  
  def edit
    # do something with @user
  end
  
  def find_user
    @user = User.find(params[:id)
  end
end

Sticking the finder in a before filter keeps the code DRY, but it still takes several lines to do this. finder_filter reduces this to a single line of code:

class UsersController < ActionController::Base
  finder_filter :only => [:show, :edit]
  
  def show; end
  def edit; end
end

There are other options to customize the column and param used in the lookup. Check out the README for full details.

To install the gem on your system:

gem sources -a http://gems.github.com
sudo gem install pelargir-finder_filter

Then open environment.rb in your Rails app and add the gem as a dependency in your initializer block:

Rails::Initializer.run do |config| 
  config.gem "pelargir-finder_filter"
  ...
end

If you have any comments or suggestions, I’d love to hear from you. Contact me through the finder_filter project on GitHub.


Tuesday, August 5, 2008

BarCampRDU 2008 came and went. It was quite enjoyable. There wasn’t as much grub as last year, but I thought the topics were more interesting.

I gave a talk on pair programming during the afternoon. It really became more of a group discussion, which was exactly what I was hoping for. Some attendees have requested the slides so I’ve attached them to this post as a PDF.

The slides have been edited somewhat. I gave this same presentation at Agile ITX last month and it was an hour and a half long. I had to cut out a few things for BarCamp. But the central ideas are still there.