# File lib/anise/annotations.rb, line 113 def ann!(ref, *keys) if ref.to_s.index('/') ref, ns = ref.to_s.split('/') else ns = :ann end ref, ns = ref.to_sym, ns.to_sym if keys.empty? annotations[ref, ns] else annotations.annotate!(ns, ref, *keys) end end