sawmill 0.0.7 → 0.0.8
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.rdoc +1 -1
- data/lib/sawmill/rotater.rb +1 -1
- data/lib/sawmill/version.rb +1 -1
- metadata +1 -1
data/History.rdoc
CHANGED
data/lib/sawmill/rotater.rb
CHANGED
|
@@ -148,7 +148,7 @@ module Sawmill
|
|
|
148
148
|
_write_to_stream(io_, "# sawmill_format: version=1\n")
|
|
149
149
|
if SUPPORTS_ENCODING
|
|
150
150
|
encoding_ = @encoding || ::Encoding.default_external
|
|
151
|
-
_write_to_stream(io_, "# sawmill_format: encoding=#{
|
|
151
|
+
_write_to_stream(io_, "# sawmill_format: encoding=#{encoding_.name}\n")
|
|
152
152
|
end
|
|
153
153
|
end
|
|
154
154
|
@handles[handle_] = [handle_, io_, 1]
|
data/lib/sawmill/version.rb
CHANGED
|
@@ -43,7 +43,7 @@ end
|
|
|
43
43
|
module Sawmill
|
|
44
44
|
|
|
45
45
|
# Current gem version, as a frozen string.
|
|
46
|
-
VERSION_STRING = '0.0.
|
|
46
|
+
VERSION_STRING = '0.0.8'.freeze
|
|
47
47
|
|
|
48
48
|
# Current gem version, as a Versionomy::Value if the versionomy library
|
|
49
49
|
# is available, or as a frozen string if not.
|