I've been using emberjs quite a lot lately, and it's awesome.
However, I've been bitten by a problem over the past few weeks, which I found quite disturbing to resolve.
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...