From a1ca671952abcecae41e16c1768214dafc424b79 Mon Sep 17 00:00:00 2001 From: Paul Cortens Date: Wed, 8 Jun 2011 20:51:08 -0700 Subject: [PATCH] add missing alias; bump version --- lib/angael/manager.rb | 7 +++++++ lib/angael/version.rb | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/lib/angael/manager.rb b/lib/angael/manager.rb index 6c9c5d1..4dea82f 100644 --- a/lib/angael/manager.rb +++ b/lib/angael/manager.rb @@ -68,6 +68,13 @@ def start! end end + # This only exists for the sake of testing. I need a way to stub the restart! + # but not the original start! + # Note: this method is not tested directly. + def restart! + start! + end + ######### diff --git a/lib/angael/version.rb b/lib/angael/version.rb index 7cd89be..9d7d763 100644 --- a/lib/angael/version.rb +++ b/lib/angael/version.rb @@ -1,3 +1,3 @@ module Angael - VERSION = "0.0.3" + VERSION = "0.0.4" end