28 December 2006

Continuous Integration Workflow

Warning: Article in construction!!!

Requirements

Before reading my prose, I am going to give you some homework, you are going to print the Martin Fowler 's paper Continuous Integration and read it thoroughly.

A bit of history!

Skip this part if you want real meat, it's just rhetoric!

My obsession / passion / addiction for x-unit frameworks comes from back in 2001, I was feeling a bit depressed by the low quality of code and the amount of bugs generated by my team
Then I came across the books written by Fred, Kent and Martin and that was like a revelation ... Lots of bla bla missing!

At the end of his article, Martin affirms that "... Continuous Integration has become a mainstream technique ....". To be realistic, I'd rather say will become a mainstream technique. I have worked in France, UK and Spain and I have the feeling we are not there yet! Give us a few years, Martin!

How was it before Continuous Integration?

Ah ah! Too many bad memories here ;-) Just a lot of time wasted and a source of conflicts within the team creating a bad moooooood ...
I am willing to draw a comic, Dilbert's style to illustrate my thoughts ...

Continuous Integration Workflow

This diagram is an attempt of making a picture from Martin Fowler and James Shore's words ...

Note : A Repository is a Source Control Management Repository. In the Subversion jargon, a Repository holds the source code of a project in a folder called trunk.

Development Steps:

  1. Update repository. To make sure sure you are always working the ''latest'' source code, start with getting the latest version of the project by updating your local repository.

  2. Lock existing files. (Optional step) Optimistic Locking VS Pessimist Locking, this debate can go on for ages ;-) I tend to consider the merges as a waste of time and try to avoid it as much as I can. More than a physical lock, which seems a bit extreme, I'd recommend that developers need to be aware about the W4 (Who's Working on What and When!). It is called Communication by normal people ;-)

  3. Create new files you need. This step is quite obvious, I put it as a reminder for step for step 6 (add the new files to svn) because this is a common mistake to forget to add the new files to the SCM.

  4. Development. using a Test Driven Development, Behavior Driven Development or a more traditional approach with a good test coverage. Make sure you run all the tests of the project, you never know - your first class code might have broken something - this is called regression.

  5. Update repository. How many times have I forgotten that step! The other folks in the team have been busy since you started working and you need to make sure you have the latest version. After the update, run all the tests another time, if there is a problem, it's probably in your code! This should encourage you to integrate more frequently.

  6. Add the new files to SCM. Jay Fields wrote a rake task which does the work with subversion.
  7. Check the build status. Before committing, you should check the build status and wait for 10 minutes if there is an integration running. Cool tools such as Cruise Control help a lot regarding that matter but we don't have that in the Rails world yet (remember the title of the article), hence we'll do it "manually".

Integration Steps

  • A. Commit files. Run to the integration box and start the integration process.
  • B. Tests run on Integration machine.
  • C. Rollback your changes. If the code can't be compiled or test the fail, you must ensure that the integration repository contains safe code, hence you need to rollback your changes and go back to your box to solve the problem. Sometimes, you can't reproduce the problem on your box and you'll need to play with the integration box: check the environments variables, dependencies, etc ...
  • The End. That's it, the integration is a success: play a noise, change the color of your nabaztag! Unlock the files you were working with. The Continuous Integration application should have updated the Integration logs (journal) and send an e-mail to team so they can think about updating their local box (the sooner, the better!).




Note: You will have guessed that I am not a native English speaker. Even if I am doing my best to write in a good English, I guess the result is far from being perfect ... Hence, I won't mind you people tell me about the typos ;-) Thanks in advance!


As a matter of fact, I am not pretending to be a Continuous Integration guru and I'd be happy to learn and debate, please send me a lot of comments!


Implementing Continuous Integration in a Rails project

Just an awful bunch of links for now. I have to say I don't know yet the best method!!! But I will write another post as soon as I have more experience ...

Cruise Control is a wonderful opensource tool for java projects, developed by Thoughtworks.
Damage Control, an cruise control for ruby but this a project currently not under active development, http://damagecontrol.codehaus.org/Continuous+Integration+Server+Feature+Matrix

In the Rails world, DHH has developed us a plug-in which integrates with subversion and campfire: the Continuous Builder plug-in.
Jay Fields, a thoughtworker describes his experience in his blog: http://jayfields.blogspot.com/2006/07/ruby-continuous-integration.html
http://www.ryandaigle.com/articles/2006/05/24/continuous-integration-w-rails

Cerberus, http://cerberus.rubyforge.org/index.html

20 December 2006

DBDesigner 4 on Ubuntu

Simple problem: I wanted to install the excellent (and free) DBDesigner from fabFORCE.net on my Ubuntu 6.10 ( the Edgy Eft) .


Always the same answer, a quick googling gave some results:

  • a Blogger giving clear instructions about DBDesigner 4 on Ubuntu
  • WDokuWiki with a lot of things messed by different people (!). I love Wikis and I have been using them a lot since 2002 but you can't do anything against chaos ;-)
  • The Ubuntu forum , always the best source of information!


Half a hour later, despite all my funky tweaks (tweet tweet), I still can't connect to my existing databases and use the fabulous reverse-engineering feature !!!

Then - oh Happy Day - I came across a post by kno712 (thank you).


5 Cups of Ubuntu

Join Date: Jul 2006
Beans: 45
Re: A small guide to install DBDesigner4

Quote:
Originally Posted by Dzo View Post
I have exactly the same issue. Looking like its just the way the application is though, have a look at the screenshots on the website!

It's a shame because its seriously putting me off using it!

Try installing the windows version with wine. Fonts are much better (IMO the website shows better fonts as well). Plus, you can connect to your databases without problems.


Here we go! I am already using wine-0.9.27 to work with an evaluation version of Dreamweaver 8 and this is an easy tool to use.


Update following Enigma Curry's commen:

Dialog boxes will pop under the main program window such that you'll have to minimize the main window to even see them. This seems to be a bug in wine... If this bother you as much as me, you'll reboot with windozzzz (sic) if you need to do a lot of work with DBdesigner !


Just to help, I have written a quick script:



# Go to a standard temp directory to download DBDesigner
cd /tmp
wget http://downloads.mysql.com/DBDesigner4/DBDesigner4.0.5.6_Setup.exe

# to install wine-0.9.27 if you haven't it
sudo apt-get -Y wine

# to install DBDesigner
wine DBDesigner4.0.5.6_Setup.exe

# To run DBDesigner
cd ~/.wine/drive_c/Program Files/fabFORCE
wine DBDesigner4.exe

One last thing is, compare the quality of the GUI and the fonts:






No doubt, the wine version ROCKS!

Morality: better stick to the simplest solution (I LOVE wine) and don't try to pretend you are a Linux professional !




12 December 2006

Installing RedHill Consulting plugins

Reading the excellent blog from RedHill Consulting (http://www.redhillconsulting.com.au/rails_plugins.html), I was not sure of how to install the plugins so I thought I shared the snippets (and post to my blog I use as a public knowlege database).

cd YOUR_PROJECT_HOME
ruby script/plugin install svn://rubyforge.org/var/svn/redhillonrails/tags/release-1.1.6/vendor/plugins/redhillonrails_core
ruby script/plugin install svn://rubyforge.org/var/svn/redhillonrails/tags/release-1.1.6/vendor/plugins/schema_validations

Adapt the code for version 1.2 ;-)

Warning I: you should install the redhillonrails_core only once (!)
Warning II: you need to have subversion installed.

07 December 2006

Member of Working with Rails

You can find my profile and recommend me on Working With Rails

I just love the feeling to be part of the Rails community. We are not so many people - especially in Europe - but we are growing very fast!
At the RailsConf Hispana, I met some passionated people who already have a lot of experience with Rails (more than me in this month of December 2006!). I am talking about aspgems, tractis and la coctelera (+ many more!)

I bet you you'll find lots of Ruby on Rails jobs in the mainstream European companies from September 2007, just set up a monster.com alert ;-)

Integrate AdThis social bookmarker with Blogger Beta

In October 2006, I decided to use a google product - Blogger Beta - to manage my blog. So far, I am not sure it a wise idea because so far coz I don't like much the templating system.

Like today, I have lost about 1 hour fighting with the horribilis XML language used by the blogger beta template system. So I thought I could share my "google beta hack" with the world. I was looking for a way of integrating an addthis.com button to the bottom of each post. After a quick googling, I found a post with a snippet explaining how to do it. Unfortunately, it did not work because of stupid XML rules (grrrr).

I could not put the code in the post because blogger doesn't deal very well with html source code, so you can download this snippet here (only 3 lines)

That will generate a addthis.com bar which will look like:

As far as I am concerned, XML in this case, adds more complexity but nothing else ! What's the point of languages if humans can't read them, there must be a way of making better abstactions to represent the template and layout of a blog!!!

By the way, I am typing this Post using Google Docs & Spreadsheets ;-) I sold my soul to Google! At some point, we'll have to find a soluton to free ourself from this corporation ...

17 November 2006

Talk @ RailsConf Madrid 25/11/2006


I will be giving a talk about testing at the Rails Conf Hispana.

You can download the pdf Presentation (in spanish) or watch it here:

(embedded into the blog thanks to slideshare.net)

I'd like to thank a friend of mine, Karl Westas (http://www.) for helping me with the design stuff, he did a great job!

Update:
Jorge Maeste published his notes about the conf on his blog.

30 September 2006

Ubuntu Tricks 101 (Dapper / Edgy)

I feel sometimes that the interface of ubuntu is a bit frustrative, I tend to look for a menu I have used only once for 5-10 minutes. I wish we had 3D IA user super-friendly interfaces instead of these hierachicals seventies menus ...

Set up a 1hout timer to enfore breaks and save yourself from RSI and other disagreements

System / Preferences / Keyboard



This is brillant!

Desactivating the sounds at startup (and other beeeeeeps)


It took me quite a while ...
It is hidden in Menu System / Administration / Login Window, then in the Tab Accessiblity: Sounds




Uncheck the "Login screen ready", that's it!

I wish one day sofware engineers (especially those who design mobile phones) will understand that the beep beep are a source of annoyance for the majority. Moreover, it so ironic, most of us don't know how to desactivate these sounds ...

Configure the applications launch at startup


Menu System - Preference - Sessions then in the right tab "Startup Programs"




Take a snapshot when you can't use the "Print screen"

Sometimes, the print screen does not work, like when you are opening a menu. It's a bit frustrative but fortunately, there is a solution:
http://tips.webdesign10.com/how-to-take-a-screenshot-on-ubuntu-linux

Use Gimp:
o take a screenshot with the GIMP, find the following menu option: File —> Acquire —> Screen Shot. You will then be offered some options for the screenshot such as length of delay and whether you want to take a screenshot of the entire screen, or just a window.

Taking a screenshot with the GIMP

Just select the option "the whole screen" and set a 5s delay :-)


12 January 2006

Contact Jean-Michel


Email Address:

Message