patir 0.5.2 → 0.5.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/History.txt CHANGED
@@ -1,3 +1,5 @@
1
+ == 0.5.3 / 2008-02-26
2
+ * Bugfix: execution time is now correctly calculated (no nasty exception)
1
3
  == 0.5.2 / 2008-02-26
2
4
  * One should let the unit tests run before releasing!
3
5
 
data/docu/index.html CHANGED
@@ -46,8 +46,11 @@
46
46
  <div align="justify" class="graypanel">
47
47
  <span class="smalltitle">News</span><br /><br />
48
48
  <span class="smallredtext">26 Februar 2008</span><br />
49
- <span class="bodytext">patir v0.5.1 is out!</span><br />
50
- <a href="patir051.html" class="smallgraytext">More...</a><br /><br />
49
+ <span class="bodytext">rutema v0.5.0 is out!.</span><br />
50
+ <a href="rutema050.html" class="smallgraytext">More...</a><br /><br />
51
+ <span class="smallredtext">26 Februar 2008</span><br />
52
+ <span class="bodytext">patir v0.5.3 is out!</span><br />
53
+ <a href="patir052.html" class="smallgraytext">More...</a><br /><br />
51
54
  <span class="smallredtext">05 December 2007</span><br />
52
55
  <span class="bodytext">rutema v0.4.2 is out!.</span><br />
53
56
  <a href="rutema041.html" class="smallgraytext">More...</a><br /><br />
data/lib/patir/base.rb CHANGED
@@ -6,7 +6,7 @@ module Patir
6
6
  module Version
7
7
  MAJOR=0
8
8
  MINOR=5
9
- TINY=2
9
+ TINY=3
10
10
  STRING=[ MAJOR, MINOR, TINY ].join( "." )
11
11
  end
12
12
  #Error thrown usually in initialize methods when missing required parameters
data/lib/patir/command.rb CHANGED
@@ -468,8 +468,8 @@ module Patir
468
468
  def run
469
469
  @run=true
470
470
  begin
471
+ t1=Time.now
471
472
  Dir.chdir(@working_directory) do
472
- t1=Time.now
473
473
  @status=@cmd.call(self)
474
474
  end
475
475
  @exec_time=Time.now-t1
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: patir
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.2
4
+ version: 0.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vassilis Rizopoulos