During the entire past year, I've been working on the project oahu .
As you might know, I live in Lyon. However, Oaun is based in Paris.
Therefore, I was remotely working, with one day per month (on average) spent in Paris in the company's office...
Voir la version française de ce billet
As you might already know, last week-end was Ruby Lugdunum , the first European Ruby conference happening in France.
And it did rock !
Credit Thomas Riboulet
In this article, I won't tell you w...
You probably remember doing the following in Rails 2 :
respond_to do | format |
format . html
format . json { render :json => @object }
end
In rails 3, you can replace those calls with :
respond_...
Since Rails 2.3 as a plugin and Rails 3.0 natively, it's possible, for a gem, to be also a "Rails Engine".
Being that, the plugin will be able to patch your rails application by adding it several features without you having to configure anything.
...
If you've already started working with a team on a project manage by GIT, you've probably already fallen on a commit like this one .
Merge branch 'master' of github.com:lyonrb/lyonrb
The question everybody can be asking is "WTF? We're on mast...
When you're looking forward to developing a mobile application, one of the first problems to occur is the non compatibility of Android and iPhone applications.
Theoricaly, this would mean we'd have to develop twice the same application. Once in Java ...