Method: Platanus::Serializers::TagSet.load
- Defined in:
- lib/platanus/serializers/tag_set.rb
.load(_str) ⇒ Object
11 12 13 14 15 |
# File 'lib/platanus/serializers/tag_set.rb', line 11 def self.load(_str) return [] if _str.nil? return [] if _str == '::::' _str.split('::')[1..-1] end |