lazier 3.5.1 → 3.5.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.
- checksums.yaml +4 -4
- data/.gitignore +4 -0
- data/.rubocop.yml +29 -0
- data/.travis-gemfile +1 -1
- data/.travis.yml +2 -2
- data/CHANGELOG.md +5 -0
- data/Gemfile +3 -3
- data/README.md +1 -1
- data/doc/Lazier.html +56 -68
- data/doc/Lazier/Boolean.html +4 -4
- data/doc/Lazier/Configuration.html +5 -5
- data/doc/Lazier/DateTime.html +29 -29
- data/doc/Lazier/DateTime/ClassMethods.html +136 -124
- data/doc/Lazier/Exceptions.html +4 -4
- data/doc/Lazier/Exceptions/Debug.html +4 -4
- data/doc/Lazier/Exceptions/MissingTranslation.html +4 -4
- data/doc/Lazier/Hash.html +144 -32
- data/doc/Lazier/I18n.html +109 -103
- data/doc/Lazier/Localizer.html +4 -4
- data/doc/Lazier/Math.html +4 -4
- data/doc/Lazier/Math/ClassMethods.html +4 -4
- data/doc/Lazier/Object.html +357 -243
- data/doc/Lazier/Pathname.html +4 -4
- data/doc/Lazier/Settings.html +58 -34
- data/doc/Lazier/String.html +6 -6
- data/doc/Lazier/TimeZone.html +86 -86
- data/doc/Lazier/TimeZone/ClassMethods.html +66 -68
- data/doc/Lazier/Version.html +5 -5
- data/doc/_index.html +5 -5
- data/doc/css/style.css +1 -0
- data/doc/file.README.html +4 -4
- data/doc/frames.html +1 -1
- data/doc/index.html +4 -4
- data/doc/method_list.html +103 -91
- data/doc/top-level-namespace.html +4 -4
- data/lazier.gemspec +2 -2
- data/lib/lazier.rb +59 -22
- data/lib/lazier/boolean.rb +1 -1
- data/lib/lazier/configuration.rb +21 -20
- data/lib/lazier/datetime.rb +127 -101
- data/lib/lazier/hash.rb +20 -12
- data/lib/lazier/i18n.rb +33 -32
- data/lib/lazier/math.rb +1 -1
- data/lib/lazier/object.rb +102 -56
- data/lib/lazier/pathname.rb +1 -1
- data/lib/lazier/settings.rb +4 -2
- data/lib/lazier/string.rb +3 -3
- data/lib/lazier/version.rb +1 -1
- data/spec/lazier/datetime_spec.rb +1 -1
- data/spec/lazier/hash_spec.rb +2 -2
- data/spec/lazier/object_spec.rb +16 -0
- data/spec/lazier/string_spec.rb +4 -10
- data/spec/lazier_spec.rb +9 -9
- data/spec/spec_helper.rb +1 -1
- metadata +7 -6
data/lib/lazier/hash.rb
CHANGED
@@ -22,8 +22,7 @@ module Lazier
|
|
22
22
|
# @param validator [Proc], if present all the keys which evaluates to true will be removed. Otherwise all blank values will be removed.
|
23
23
|
# @return [Hash] The hash with all blank values removed.
|
24
24
|
def compact(&validator)
|
25
|
-
validator
|
26
|
-
reject(&validator)
|
25
|
+
dup.compact!(&validator)
|
27
26
|
end
|
28
27
|
|
29
28
|
# Compacts the current hash, removing all keys which values are blank.
|
@@ -39,7 +38,7 @@ module Lazier
|
|
39
38
|
# @param accesses [Array] The requested access for the keys. Can be `:strings`, `:symbols` or `:indifferent`. If `nil` the keys are not modified.
|
40
39
|
# @return [Hash] The current hash with keys modified.
|
41
40
|
def ensure_access(*accesses)
|
42
|
-
accesses.compact.
|
41
|
+
accesses.compact.reduce(self) do |rv, access|
|
43
42
|
method = VALID_ACCESSES.fetch(access.ensure_string.to_sym, nil)
|
44
43
|
rv = rv.send(method) if method
|
45
44
|
rv
|
@@ -53,19 +52,28 @@ module Lazier
|
|
53
52
|
def enable_dotted_access(readonly = true)
|
54
53
|
extend(Hashie::Extensions::MethodReader)
|
55
54
|
extend(Hashie::Extensions::MethodQuery)
|
56
|
-
extend(Hashie::Extensions::MethodWriter)
|
55
|
+
extend(Hashie::Extensions::MethodWriter) unless readonly
|
57
56
|
|
58
57
|
each do |_, value|
|
59
|
-
|
60
|
-
value.enable_dotted_access(readonly)
|
61
|
-
elsif value.respond_to?(:each) then
|
62
|
-
value.each do |element|
|
63
|
-
element.enable_dotted_access(readonly) if element.is_a?(Hash)
|
64
|
-
end
|
65
|
-
end
|
58
|
+
enable_dotted_access_for_value(value, readonly)
|
66
59
|
end
|
67
60
|
|
68
61
|
self
|
69
62
|
end
|
63
|
+
|
64
|
+
# Makes sure that the value is accessible using dotted notation. This is also applied to every embedded hash.
|
65
|
+
#
|
66
|
+
# @param value [Object] The value to manipulate.
|
67
|
+
# @param readonly [Boolean] If the dotted notation is only enable for reading. `true` by default.
|
68
|
+
# @return [Hash] The current value enabled for dotted access.
|
69
|
+
def enable_dotted_access_for_value(value, readonly)
|
70
|
+
if value.is_a?(Hash)
|
71
|
+
value.enable_dotted_access(readonly)
|
72
|
+
elsif value.respond_to?(:each) then
|
73
|
+
value.each do |element|
|
74
|
+
element.enable_dotted_access(readonly) if element.is_a?(Hash)
|
75
|
+
end
|
76
|
+
end
|
77
|
+
end
|
70
78
|
end
|
71
|
-
end
|
79
|
+
end
|
data/lib/lazier/i18n.rb
CHANGED
@@ -45,40 +45,41 @@ module Lazier
|
|
45
45
|
end
|
46
46
|
|
47
47
|
private
|
48
|
-
# Loads a locale for messages.
|
49
|
-
#
|
50
|
-
# @param locale [Symbol] The new locale. Default is the current system locale.
|
51
|
-
# @return [R18n::Translation] The new translation object.
|
52
|
-
def i18n_load_locale(locale)
|
53
|
-
path = @i18n_locales_path || ""
|
54
|
-
locales = validate_locales([locale], path)
|
55
48
|
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
end
|
64
|
-
end
|
49
|
+
# Loads a locale for messages.
|
50
|
+
#
|
51
|
+
# @param locale [Symbol] The new locale. Default is the current system locale.
|
52
|
+
# @return [R18n::Translation] The new translation object.
|
53
|
+
def i18n_load_locale(locale)
|
54
|
+
path = @i18n_locales_path || ""
|
55
|
+
locales = validate_locales([locale], path)
|
65
56
|
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
57
|
+
begin
|
58
|
+
tokens = @i18n_root.to_s.split(/[:.]/)
|
59
|
+
translation = tokens.reduce(R18n::I18n.new(locales, path).t) { |a, e| a.send(e) }
|
60
|
+
raise ArgumentError if translation.is_a?(R18n::Untranslated)
|
61
|
+
translation
|
62
|
+
rescue
|
63
|
+
raise Lazier::Exceptions::MissingTranslation.new(locales, path)
|
73
64
|
end
|
65
|
+
end
|
74
66
|
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
67
|
+
# Validates locales for messages.
|
68
|
+
#
|
69
|
+
# @param locales [Array] The list of locales to validate. English is added as fallback.
|
70
|
+
# @param path [String] The path where look into.
|
71
|
+
# @return [Array] The list of valid locales.
|
72
|
+
def validate_locales(locales, path)
|
73
|
+
(locales + [ENV["LANG"], R18n::I18n.system_locale, "en"]).select { |l| find_locale_in_path(l, path) }.uniq.map(&:to_s)
|
74
|
+
end
|
75
|
+
|
76
|
+
# Find a locale file in a path.
|
77
|
+
#
|
78
|
+
# @param locale [String] The locale to find.
|
79
|
+
# @param path [String] The path where look into.
|
80
|
+
# @return [String|nil] The version of the locale found or `nil`, if nothing was found.
|
81
|
+
def find_locale_in_path(locale, path)
|
82
|
+
locale ? [locale, locale[0, 5], locale[0, 2]].select { |l| File.exist?("#{path}/#{l}.yml") }.first : nil
|
83
|
+
end
|
83
84
|
end
|
84
|
-
end
|
85
|
+
end
|
data/lib/lazier/math.rb
CHANGED
data/lib/lazier/object.rb
CHANGED
@@ -31,24 +31,36 @@ module Lazier
|
|
31
31
|
# Checks if the object is a valid integer.
|
32
32
|
#
|
33
33
|
# @return [Boolean] `true` is a valid integer, `false` otherwise.
|
34
|
-
def
|
35
|
-
|
34
|
+
def integer?
|
35
|
+
numeric?(Integer, ::Lazier::Object::INTEGER_MATCHER)
|
36
36
|
end
|
37
|
+
alias_method :is_integer?, :integer?
|
37
38
|
|
38
39
|
# Checks if the object is a valid float.
|
39
40
|
#
|
40
41
|
# @return [Boolean] `true` is a valid float, `false` otherwise.
|
41
|
-
def
|
42
|
-
|
42
|
+
def float?
|
43
|
+
numeric?(Numeric, ::Lazier::Object::FLOAT_MATCHER)
|
43
44
|
end
|
44
|
-
|
45
|
+
alias_method :number?, :float?
|
46
|
+
alias_method :is_float?, :float?
|
47
|
+
alias_method :is_number?, :float?
|
48
|
+
|
49
|
+
# Checks if the object is of a numeric class of matches a numeric string expression.
|
50
|
+
#
|
51
|
+
# @return [Boolean] `true` is a valid numeric object, `false` otherwise.
|
52
|
+
def numeric?(klass = Integer, matcher = ::Lazier::Object::INTEGER_MATCHER)
|
53
|
+
is_a?(klass) || is_a?(::TrueClass) || !self || normalize_number =~ matcher
|
54
|
+
end
|
55
|
+
alias_method :is_numeric?, :numeric?
|
45
56
|
|
46
57
|
# Checks if the object is a valid boolean value.
|
47
58
|
#
|
48
59
|
# @return [Boolean] `true` is a valid boolean value, `false` otherwise.
|
49
|
-
def
|
60
|
+
def boolean?
|
50
61
|
is_a?(::TrueClass) || !self || to_s =~ ::Lazier::Object::BOOLEAN_MATCHER
|
51
62
|
end
|
63
|
+
alias_method :is_boolean?, :boolean?
|
52
64
|
|
53
65
|
# Sends a method to the object. If the objects doesn't not respond to the method, it returns `nil` instead of raising an exception.
|
54
66
|
#
|
@@ -76,7 +88,11 @@ module Lazier
|
|
76
88
|
# @param stringifier [Symbol] The method used to convert the object to a string. *Ignored if a block is passed.*
|
77
89
|
# @return [String] The string representation of the object.
|
78
90
|
def ensure_string(default_value = "", stringifier = :to_s)
|
79
|
-
|
91
|
+
if is_a?(NilClass)
|
92
|
+
default_value
|
93
|
+
else
|
94
|
+
block_given? ? yield(self, default_value) : send(stringifier)
|
95
|
+
end
|
80
96
|
end
|
81
97
|
|
82
98
|
# Makes sure that the object is an array. For non array objects, return a single element array containing the object.
|
@@ -89,44 +105,41 @@ module Lazier
|
|
89
105
|
# @param block [Proc] A block to sanitize entries. It must accept the value as unique argument.
|
90
106
|
# @return [Array] If the object is an array, then the object itself, a single element array containing the object otherwise.
|
91
107
|
def ensure_array(default_value = nil, uniq = false, compact = false, flatten = false, sanitizer = nil, &block)
|
92
|
-
rv =
|
108
|
+
rv =
|
109
|
+
if is_a?(::Array)
|
110
|
+
dup
|
111
|
+
else
|
112
|
+
default_value || (self.is_a?(NilClass) ? [] : [self])
|
113
|
+
end
|
114
|
+
|
93
115
|
rv = manipulate_array(rv, uniq, compact, flatten).map(&(block || sanitizer)) if block_given? || sanitizer
|
94
116
|
manipulate_array(rv, uniq, compact, flatten)
|
95
117
|
end
|
96
118
|
|
97
119
|
# Makes sure that the object is an hash. For non hash objects, return an hash basing on the `default_value` parameter.
|
98
120
|
#
|
99
|
-
# @param access [Symbol|NilClass] The requested access for the keys of the returned object. Can be `:strings`, `:symbols` or `indifferent`.
|
100
|
-
#
|
101
|
-
# @param
|
121
|
+
# @param access [Symbol|NilClass] The requested access for the keys of the returned object. Can be `:strings`, `:symbols` or `indifferent`.
|
122
|
+
# If `nil` the keys are not modified.
|
123
|
+
# @param default_value [Hash|String|Symbol|NilClass] The default value to use. If it is an `Hash`, it is returned as value otherwise it is used to build
|
124
|
+
# as a key to build an hash with the current object as only value (everything but strings and symbols are mapped to `key`).
|
125
|
+
# Passing `nil` is equal to pass an empty Hash.
|
126
|
+
# @param sanitizer [Symbol|nil] If not `nil`, the method to use to sanitize values of the hash. *Ignored if `block` is present.*
|
127
|
+
# @param block [Proc] A block to sanitize entries. It must accept the value as unique argument.
|
102
128
|
# @return [Hash] If the object is an hash, then the object itself, a hash with the object as single value otherwise.
|
103
|
-
def ensure_hash(access = nil, default_value = nil, sanitizer = nil)
|
104
|
-
default_value = {} if default_value.
|
129
|
+
def ensure_hash(access = nil, default_value = nil, sanitizer = nil, &block)
|
130
|
+
default_value = {} if default_value.is_a?(NilClass)
|
105
131
|
|
106
|
-
rv =
|
107
|
-
|
108
|
-
elsif default_value.is_a?(::Hash) then
|
109
|
-
default_value
|
110
|
-
else
|
111
|
-
key = default_value.is_a?(::String) || default_value.is_a?(::Symbol) ? default_value : :key
|
112
|
-
{key => self}
|
113
|
-
end
|
132
|
+
rv = convert_to_hash(default_value)
|
133
|
+
rv = sanitize_hash(rv, sanitizer, block) if block || sanitizer
|
114
134
|
|
115
|
-
|
116
|
-
rv = rv.reduce({}) {|h, (k, v)|
|
117
|
-
h[k] = block_given? ? yield(v) : v.send(sanitizer)
|
118
|
-
h
|
119
|
-
}
|
120
|
-
end
|
121
|
-
|
122
|
-
rv.respond_to?(:ensure_access) ? rv.ensure_access(access) :rv
|
135
|
+
rv.respond_to?(:ensure_access) ? rv.ensure_access(access) : rv
|
123
136
|
end
|
124
137
|
|
125
138
|
# Converts the object to a boolean.
|
126
139
|
#
|
127
140
|
# @return [Boolean] The boolean representation of the object.
|
128
141
|
def to_boolean
|
129
|
-
is_a?(TrueClass) ||
|
142
|
+
is_a?(TrueClass) || to_integer == 1 || ::Lazier::Object::BOOLEAN_TRUE_MATCHER.match(ensure_string).is_a?(MatchData)
|
130
143
|
end
|
131
144
|
|
132
145
|
# Converts the object to a integer.
|
@@ -142,7 +155,11 @@ module Lazier
|
|
142
155
|
# @param default_value [Float] The value to return if the conversion is not possible.
|
143
156
|
# @return [Float] The float representation of the object.
|
144
157
|
def to_float(default_value = 0.0)
|
145
|
-
is_float?
|
158
|
+
if is_float?
|
159
|
+
::Kernel.Float(is_a?(::Numeric) ? self : normalize_number)
|
160
|
+
else
|
161
|
+
default_value
|
162
|
+
end
|
146
163
|
end
|
147
164
|
|
148
165
|
# Returns the rounded float representaton of the object.
|
@@ -162,15 +179,14 @@ module Lazier
|
|
162
179
|
# @param k_separator [String] The string to use as thousands separator.
|
163
180
|
# @return [String] The string representation of the object.
|
164
181
|
def format_number(precision = nil, decimal_separator = nil, add_string = nil, k_separator = nil)
|
165
|
-
if is_number?
|
182
|
+
if is_number?
|
166
183
|
settings = ::Lazier.settings.format_number
|
167
184
|
add_string ||= settings[:add_string]
|
168
185
|
|
169
|
-
rv = ("%0.#{[precision || settings[:precision], 0].max}f"
|
186
|
+
rv = format("%0.#{[precision || settings[:precision], 0].max}f", to_float).split(".")
|
170
187
|
rv[0].gsub!(/(\d)(?=(\d{3})+(?!\d))/, "\\1#{k_separator || settings[:k_separator]}")
|
171
188
|
rv = rv.join(decimal_separator || settings[:decimal_separator])
|
172
|
-
rv
|
173
|
-
rv
|
189
|
+
add_string ? rv + " #{add_string}" : rv
|
174
190
|
else
|
175
191
|
nil
|
176
192
|
end
|
@@ -194,7 +210,7 @@ module Lazier
|
|
194
210
|
# @param formatter [Symbol] The method to use to format the label. Must accept the `length` and the `filler arguments.
|
195
211
|
# @return [String] The object inspected and formatted.
|
196
212
|
def indexize(length = 2, filler = "0", formatter = :rjust)
|
197
|
-
|
213
|
+
ensure_string.send(formatter, length, filler)
|
198
214
|
end
|
199
215
|
|
200
216
|
# Inspects an object.
|
@@ -203,29 +219,59 @@ module Lazier
|
|
203
219
|
# @param as_exception [Boolean] If raise an exception.
|
204
220
|
# @return [String] The object inspected and formatted.
|
205
221
|
def for_debug(format = :yaml, as_exception = true)
|
206
|
-
rv =
|
207
|
-
|
208
|
-
|
209
|
-
else
|
210
|
-
|
211
|
-
end
|
222
|
+
rv =
|
223
|
+
case format
|
224
|
+
when :pretty_json then ::JSON.pretty_generate(self)
|
225
|
+
else send("to_#{format}")
|
226
|
+
end
|
212
227
|
|
213
|
-
as_exception ? raise(::Lazier::Exceptions::Debug
|
228
|
+
as_exception ? raise(::Lazier::Exceptions::Debug, rv) : rv
|
214
229
|
end
|
215
230
|
|
216
231
|
private
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
232
|
+
|
233
|
+
# Performs manipulation on an array.
|
234
|
+
#
|
235
|
+
# @param rv [Array] The input array.
|
236
|
+
# @param uniq [Boolean] If to remove duplicates from the array.
|
237
|
+
# @param compact [Boolean] If to compact the array.
|
238
|
+
# @param flatten [Boolean] If to flatten the array.
|
239
|
+
# @return [Array] The manipulated array.
|
240
|
+
def manipulate_array(rv, uniq, compact, flatten)
|
241
|
+
rv = rv.flatten if flatten
|
242
|
+
rv = rv.uniq if uniq
|
243
|
+
rv = rv.compact if compact
|
244
|
+
rv
|
245
|
+
end
|
246
|
+
|
247
|
+
# Converts the object to a hash.
|
248
|
+
#
|
249
|
+
# @param default_value [Hash|String|Symbol|NilClass] The default value to use. If it is an `Hash`, it is returned as value otherwise it is used to build
|
250
|
+
# as a key to build an hash with the current object as only value (everything but strings and symbols are mapped to `key`).
|
251
|
+
# Passing `nil` is equal to pass an empty Hash.
|
252
|
+
# @return [Hash] An hash.
|
253
|
+
def convert_to_hash(default_value)
|
254
|
+
if is_a?(::Hash)
|
255
|
+
self
|
256
|
+
elsif default_value.is_a?(::Hash)
|
257
|
+
default_value
|
258
|
+
else
|
259
|
+
key = default_value.is_a?(::String) || default_value.is_a?(::Symbol) ? default_value : :key
|
260
|
+
{key => self}
|
229
261
|
end
|
262
|
+
end
|
263
|
+
|
264
|
+
# Sanitizes an hash
|
265
|
+
#
|
266
|
+
# @param hash [Hash] The hash to sanitize.
|
267
|
+
# @param sanitizer [Symbol|nil] If not `nil`, the method to use to sanitize values of the hash. *Ignored if `block` is present.*
|
268
|
+
# @param block [Proc] A block to sanitize entries. It must accept the value as unique argument.
|
269
|
+
# @return [Hash] The sanitized hash.
|
270
|
+
def sanitize_hash(hash, sanitizer, block)
|
271
|
+
hash.reduce({}) { |h, (k, v)|
|
272
|
+
h[k] = block ? block.call(v) : v.send(sanitizer)
|
273
|
+
h
|
274
|
+
}
|
275
|
+
end
|
230
276
|
end
|
231
|
-
end
|
277
|
+
end
|
data/lib/lazier/pathname.rb
CHANGED
data/lib/lazier/settings.rb
CHANGED
@@ -66,7 +66,9 @@ module Lazier
|
|
66
66
|
# @param k_separator [String] The string to use as thousands separator.
|
67
67
|
# @return [Hash] The new formatters.
|
68
68
|
def setup_format_number(precision = 2, decimal_separator = ".", add_string = nil, k_separator = ",")
|
69
|
-
@format_number = ::HashWithIndifferentAccess.new(
|
69
|
+
@format_number = ::HashWithIndifferentAccess.new(
|
70
|
+
precision: precision, decimal_separator: decimal_separator, add_string: add_string, k_separator: k_separator
|
71
|
+
)
|
70
72
|
end
|
71
73
|
|
72
74
|
# Setups strings representation of booleans.
|
@@ -105,7 +107,7 @@ module Lazier
|
|
105
107
|
# @param short_days [Array] The abbreviated string representation of days.
|
106
108
|
# @return [Hash] The new representations.
|
107
109
|
def setup_date_names(long_months = nil, short_months = nil, long_days = nil, short_days = nil)
|
108
|
-
definitions =
|
110
|
+
definitions = i18n.date
|
109
111
|
|
110
112
|
@date_names = {
|
111
113
|
long_months: long_months.ensure(definitions.long_months),
|
data/lib/lazier/string.rb
CHANGED
@@ -27,7 +27,7 @@ module Lazier
|
|
27
27
|
# @return [String] The string with any invalid UTF-8 sequences replaced.
|
28
28
|
def ensure_valid_utf8(replacement = "")
|
29
29
|
# This odd line is because if need to specify a different encoding (without losing infos) to replace invalid bytes and then we go back to utf-8
|
30
|
-
|
30
|
+
encode("utf-16", invalid: :replace, undef: :replace, replace: replacement).encode("utf-8")
|
31
31
|
end
|
32
32
|
|
33
33
|
# Returns the tagged version of a string.
|
@@ -66,11 +66,11 @@ module Lazier
|
|
66
66
|
# @param pattern [String|Regexp] The pattern to use.
|
67
67
|
# @return [Array] An array of tokens.
|
68
68
|
def split_tokens(no_blanks = true, strip = true, uniq = false, pattern = /\s*,\s*/)
|
69
|
-
rv =
|
69
|
+
rv = split(pattern)
|
70
70
|
rv.map!(&:strip) if strip
|
71
71
|
rv.select!(&:present?) if no_blanks
|
72
72
|
rv.uniq! if uniq
|
73
73
|
rv
|
74
74
|
end
|
75
75
|
end
|
76
|
-
end
|
76
|
+
end
|
data/lib/lazier/version.rb
CHANGED
@@ -204,9 +204,9 @@ describe Lazier::TimeZone do
|
|
204
204
|
let(:zone_without_dst) { ::ActiveSupport::TimeZone["International Date Line West"] }
|
205
205
|
|
206
206
|
before(:all) do
|
207
|
+
::Lazier.load!
|
207
208
|
::Lazier::Settings.instance(true)
|
208
209
|
::Lazier::Settings.instance.i18n = :en
|
209
|
-
::Lazier.load!
|
210
210
|
end
|
211
211
|
|
212
212
|
describe ".rationalize_offset" do
|