Module: R18n::Utils
- Defined in:
- lib/r18n-core/utils.rb
Constant Summary collapse
- HTML_ENTRIES =
{ '&' => '&', '<' => '<', '>' => '>' }
Class Method Summary collapse
-
.deep_merge!(a, b) ⇒ Object
Recursively hash merge.
-
.escape_html(content) ⇒ Object
Escape HTML entries (<, >, &).
-
.hash_map(hash, &block) ⇒ Object
Invokes
block
once for each key and value ofhash
. -
.to_date(time) ⇒ Object
Convert Time to Date.
-
.use_syck(&block) ⇒ Object
Call
block
with Syck yamler.
Class Method Details
.deep_merge!(a, b) ⇒ Object
Recursively hash merge.
49 50 51 52 53 54 55 56 57 58 59 |
# File 'lib/r18n-core/utils.rb', line 49 def self.deep_merge!(a, b) b.each_pair do |key, value| another = a[key] a[key] = if another.is_a?(Hash) && value.is_a?(Hash) deep_merge!(another, value) else value end end a end |
.escape_html(content) ⇒ Object
Escape HTML entries (<, >, &). Copy from HAML helper.
33 34 35 |
# File 'lib/r18n-core/utils.rb', line 33 def self.escape_html(content) content.to_s.gsub(/[><&]/) { |s| HTML_ENTRIES[s] } end |
.hash_map(hash, &block) ⇒ Object
Invokes block
once for each key and value of hash
. Creates a new hash with the keys and values returned by the block
.
39 40 41 42 43 44 45 46 |
# File 'lib/r18n-core/utils.rb', line 39 def self.hash_map(hash, &block) result = {} hash.each_pair do |key, val| new_key, new_value = block.call(key, val) result[new_key] = new_value end result end |
.to_date(time) ⇒ Object
Convert Time to Date. Backport from Ruby 1.9.
25 26 27 28 |
# File 'lib/r18n-core/utils.rb', line 25 def self.to_date(time) jd = Date.send(:civil_to_jd, time.year, time.mon, time.mday, Date::ITALY) Date.new!(Date.send(:jd_to_ajd, jd, 0, 0), 0, Date::ITALY) end |
.use_syck(&block) ⇒ Object
Call block
with Syck yamler. It used to load RedCloth, which isn’t support Psych.
63 64 65 66 67 68 69 70 71 72 |
# File 'lib/r18n-core/utils.rb', line 63 def self.use_syck(&block) if '1.8.' == RUBY_VERSION[0..3] yield else origin_yamler = YAML::ENGINE.yamler YAML::ENGINE.yamler = 'syck' yield YAML::ENGINE.yamler = origin_yamler end end |