lib/xommelier/xml/namespace.rb in xommelier-0.1.32 vs lib/xommelier/xml/namespace.rb in xommelier-0.1.33

- old
+ new

@@ -1,6 +1,7 @@ # coding: utf-8 +# frozen_string_literal: true ################################################ # © Alexander Semyonov, 2011—2013, MIT License # # Author: Alexander Semyonov <al@semyonov.us> # ################################################ @@ -58,10 +59,10 @@ def default? uri.to_s == DEFAULT_NS end def to_hash - {as.to_s => uri.to_s} + { as.to_s => uri.to_s } end def attribute_name default? ? 'xmlns' : "xmlns:#{as}" end