dugway 0.6.6 → 0.6.7
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/dugway.rb +4 -4
- data/lib/dugway/version.rb +1 -1
- metadata +1 -1
data/lib/dugway.rb
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
# Set our encodings to ensure we're always dealing with UTF-8 data.
|
2
2
|
# Users experiencing problems with their templates should ensure they are saved as UTF-8.
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
3
|
+
old_verbose, $VERBOSE = $VERBOSE, nil
|
4
|
+
Encoding.default_external = Encoding::UTF_8
|
5
|
+
Encoding.default_internal = Encoding::UTF_8
|
6
|
+
$VERBOSE = old_verbose
|
7
7
|
|
8
8
|
require 'active_support/all'
|
9
9
|
require 'i18n'
|
data/lib/dugway/version.rb
CHANGED