Sha256: 048fa89da2c8c6f4f4aaee61318d095c50c73a94927a30809a60531d36d21eeb
Contents?: true
Size: 763 Bytes
Versions: 2
Compression:
Stored size: 763 Bytes
Contents
module Obo class Stanza # returns :to_f, :to_i, :to_s or false based on the xref value. def cast_method xref = @tagvalues['xref'].first @cast_method = if xref.nil? || (@cast_method == false) false else if @cast_method @cast_method else case xref[/value-type:xsd\\:([^\s]+) /, 1] when 'float' ; :to_f when 'int' ; :to_i when 'string' ; :to_s else ; false end end end end # returns the value cast based on rules in first xref # no casting performed if there is no xref def cast(val) methd = cast_method methd ? val.send(methd) : val end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mspire-obo-0.0.4 | lib/ext/obo.rb |
mspire-obo-0.0.3 | lib/ext/obo.rb |