gestalt 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- data/gestalt.gemspec +1 -1
- data/lib/gestalt.rb +2 -2
- metadata +2 -2
data/gestalt.gemspec
CHANGED
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
|
|
13
13
|
## If your rubyforge_project name is different, then edit it and comment out
|
14
14
|
## the sub! line in the Rakefile
|
15
15
|
s.name = 'gestalt'
|
16
|
-
s.version = '0.0.
|
16
|
+
s.version = '0.0.4'
|
17
17
|
s.date = '2010-04-29'
|
18
18
|
s.rubyforge_project = 'gestalt'
|
19
19
|
|
data/lib/gestalt.rb
CHANGED
@@ -5,13 +5,13 @@ require 'formatador'
|
|
5
5
|
|
6
6
|
class Gestalt
|
7
7
|
|
8
|
-
VERSION = '0.0.
|
8
|
+
VERSION = '0.0.4'
|
9
9
|
|
10
10
|
attr_accessor :calls
|
11
11
|
|
12
12
|
def initialize(formatador = Formatador.new)
|
13
13
|
@calls = []
|
14
|
-
@formatador =
|
14
|
+
@formatador = formatador
|
15
15
|
@stack = []
|
16
16
|
@totals = {}
|
17
17
|
end
|