* vcs/scribo.rb: New.
---
scribo/ChangeLog | 6 ++++++
scribo/vcs/scribo.rb | 16 ++++++++++++++++
2 files changed, 22 insertions(+), 0 deletions(-)
create mode 100644 scribo/vcs/scribo.rb
diff --git a/scribo/ChangeLog b/scribo/ChangeLog
index fa89236..ddebb31 100644
--- a/scribo/ChangeLog
+++ b/scribo/ChangeLog
@@ -1,5 +1,11 @@
2009-06-11 Roland Levillain <roland(a)lrde.epita.fr>
+ Add support for Vcs and svn-wrapper.
+
+ * vcs/scribo.rb: New.
+
+2009-06-11 Roland Levillain <roland(a)lrde.epita.fr>
+
Do not distribute executable binaries.
* src/Makefile.am (EXTRA_DIST): Rename as...
diff --git a/scribo/vcs/scribo.rb b/scribo/vcs/scribo.rb
new file mode 100644
index 0000000..0b849e6
--- /dev/null
+++ b/scribo/vcs/scribo.rb
@@ -0,0 +1,16 @@
+class Vcs
+
+ # See
http://rubyforge.org/projects/vcs
+ # and
http://vcs.rubyforge.org
+
+ protocol_version '0.1'
+
+ def scribo_commit! ( *args )
+ common_commit!("scribo <%= rev %>: <%= title %>", *args) do
|subject|
+ mail!(:to => %w[olena-patches(a)lrde.epita.fr], :subject => subject)
+ end
+ end
+ alias_command :mlnci, :scribo_commit
+ default_commit :scribo_commit
+
+end # class Vcs
--
1.6.2.4