
Hop, le premier commit de Olena 1.0. :) (Désolé pour le mail en retard, je me suis raté avec Vcs.) https://svn.lrde.epita.fr/svn/oln/trunk ChangeLog | 6 ++++++ vcs/oln.rb | 16 ++++++++++++++++ 2 files changed, 22 insertions(+) Index: ChangeLog from Roland Levillain <roland@lrde.epita.fr> Add Vcs helper. * vcs/oln.rb: New. ++ vcs/oln.rb (révision 382) class Vcs # See http://rubyforge.org/projects/vcs # and http://vcs.rubyforge.org protocol_version '0.1' def olena_commit! ( *args ) common_commit!("<%= rev %>: <%= title %>", *args) do |subject| mail!(:to => %w['olena-patches@lrde.epita.fr'], :subject => subject) end end alias_command :olnci, :olena_commit default_commit :olena_commit end # class Vcs

Et oui %w[ toto tata titi ] est equivalent a [ 'toto', 'tata', 'titi' ], c'est un truc pour les feignants comme moi :) (pour s'en rappeler c'est 'w' comme "word list") On 1/24/06, Roland Levillain <roland@lrde.epita.fr> wrote:
Hop, le premier commit de Olena 1.0. :)
(Désolé pour le mail en retard, je me suis raté avec Vcs.)
https://svn.lrde.epita.fr/svn/oln/trunk
ChangeLog | 6 ++++++ vcs/oln.rb | 16 ++++++++++++++++ 2 files changed, 22 insertions(+)
Index: ChangeLog from Roland Levillain <roland@lrde.epita.fr>
Add Vcs helper.
* vcs/oln.rb: New.
++ vcs/oln.rb (révision 382) class Vcs
# See http://rubyforge.org/projects/vcs # and http://vcs.rubyforge.org
protocol_version '0.1'
def olena_commit! ( *args ) common_commit!("<%= rev %>: <%= title %>", *args) do |subject| mail!(:to => %w['olena-patches@lrde.epita.fr'], :subject => subject) end end alias_command :olnci, :olena_commit default_commit :olena_commit
end # class Vcs
-- Nicolas Pouillard aka Ertai <ertai@feydakins.org> http://uttk.org Uttk -- Unified Test Tool Kit

"Nicolas" == Nicolas Pouillard <nicolas.pouillard@gmail.com> writes:
Nicolas> Et oui %w[ toto tata titi ] est equivalent a [ 'toto', Nicolas> 'tata', 'titi' ], c'est un truc pour les feignants comme moi Nicolas> :) (pour s'en rappeler c'est 'w' comme "word list") Thanks for the tip. :) Dans mes résolutions de 2006, il y a (entre autres) : - systématiser l'utilisation de Vcs (c'est en bonne voie) ; - apprendre Ruby. :)

On 1/24/06, Roland Levillain <roland@lrde.epita.fr> wrote:
"Nicolas" == Nicolas Pouillard <nicolas.pouillard@gmail.com> writes:
Nicolas> Et oui %w[ toto tata titi ] est equivalent a [ 'toto', Nicolas> 'tata', 'titi' ], c'est un truc pour les feignants comme moi Nicolas> :) (pour s'en rappeler c'est 'w' comme "word list")
Thanks for the tip. :)
Dans mes résolutions de 2006, il y a (entre autres) : - systématiser l'utilisation de Vcs (c'est en bonne voie) ; - apprendre Ruby. :)
Que de bonnes résolutions :D -- Nicolas Pouillard aka Ertai <ertai@feydakins.org> http://uttk.org Uttk -- Unified Test Tool Kit
participants (2)
-
Nicolas Pouillard
-
Roland Levillain