proto-1.0 9: Adding support for vcs in olena, metalic and integre

Index: ChangeLog from Damien Thivolle <damien@lrde.epita.fr> * integre/vcs: New. * integre/vcs/oln.rb: New. Configuration file for vcs. * olena/vcs: New. * olena/vcs/oln.rb: New. * metalic/vcs: New. * metalic/vcs/oln.rb: New. integre/vcs/oln.rb | 13 +++++++++++++ metalic/vcs/oln.rb | 13 +++++++++++++ olena/vcs/oln.rb | 13 +++++++++++++ 3 files changed, 39 insertions(+) Index: integre/vcs/oln.rb --- integre/vcs/oln.rb (revision 0) +++ integre/vcs/oln.rb (revision 0) @@ -0,0 +1,13 @@ +class Vcs + + def oln_commit! ( s, *args ) + + common_commit!(*args) do |rev| + news!(:groups => ['lrde.olena.patches'], + :subject => "proto-1.0 #{rev}: #{s}") + end + + end + alias_command :olnci, :oln_commit + +end # class Vcs Index: olena/vcs/oln.rb --- olena/vcs/oln.rb (revision 0) +++ olena/vcs/oln.rb (revision 0) @@ -0,0 +1,13 @@ +class Vcs + + def oln_commit! ( s, *args ) + + common_commit!(*args) do |rev| + news!(:groups => ['lrde.olena.patches'], + :subject => "proto-1.0 #{rev}: #{s}") + end + + end + alias_command :olnci, :oln_commit + +end # class Vcs Index: metalic/vcs/oln.rb --- metalic/vcs/oln.rb (revision 0) +++ metalic/vcs/oln.rb (revision 0) @@ -0,0 +1,13 @@ +class Vcs + + def oln_commit! ( s, *args ) + + common_commit!(*args) do |rev| + news!(:groups => ['lrde.olena.patches'], + :subject => "proto-1.0 #{rev}: #{s}") + end + + end + alias_command :olnci, :oln_commit + +end # class Vcs
participants (1)
-
Damien Thivolle