cowtech-lib 1.9.1.1 → 1.9.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/cowtech-lib.gemspec +1 -1
- data/lib/cowtech-lib/console.rb +1 -1
- data/lib/cowtech-lib/version.rb +1 -1
- metadata +2 -2
data/cowtech-lib.gemspec
CHANGED
data/lib/cowtech-lib/console.rb
CHANGED
@@ -169,7 +169,7 @@ module Cowtech
|
|
169
169
|
end
|
170
170
|
|
171
171
|
# Add dots and indentation if needed
|
172
|
-
msg = self.indent(msg + (args.fetch(:dots, true) ? "..." : ""), args[:indent] ?
|
172
|
+
msg = self.indent(msg + (args.fetch(:dots, true) ? "..." : ""), args[:indent] ? args[:indent] : @indent_level)
|
173
173
|
|
174
174
|
# Parse the message
|
175
175
|
unless args[:plain] then
|
data/lib/cowtech-lib/version.rb
CHANGED