Sha256: 9274e0be73436d90fdbe1583f8023cbc1720378c10899e7391425f64ca310b75
Contents?: true
Size: 938 Bytes
Versions: 4
Compression:
Stored size: 938 Bytes
Contents
module Symbols def symbols_from_library(library) syms = `nm -gU #{library}`.split("\n") result = classes_from_symbols(syms) result + constants_from_symbols(syms) end module_function :symbols_from_library :private def classes_from_symbols(syms) classes = syms.select { |klass| klass[/OBJC_CLASS_\$_/] } classes = classes.uniq classes.map! { |klass| klass.gsub(/^.*\$_/, '') } end def constants_from_symbols(syms) consts = syms.select { |const| const[/ S /] } consts = consts.select { |const| const !~ /OBJC|\.eh/ } consts = consts.uniq consts = consts.map! { |const| const.gsub(/^.* _/, '') } other_consts = syms.select { |const| const[/ T /] } other_consts = other_consts.uniq other_consts = other_consts.map! { |const| const.gsub(/^.* _/, '') } consts + other_consts end module_function :classes_from_symbols module_function :constants_from_symbols end
Version data entries
4 entries across 4 versions & 1 rubygems