cowtech-lib 1.9.1.1 → 1.9.1.2
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/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