Sha256: 766dde4a53f15d3e0b6e5915b465f8ccb85ade64db14f3bc5132c3fa2e44a14b
Contents?: true
Size: 844 Bytes
Versions: 3
Compression:
Stored size: 844 Bytes
Contents
module Isic class Entity def initialize(code) @code = code end def classify(options = {}) translation = options[:translation] || :en all_codes.inject({}) do |hash, (key, value)| hash[key] = Isic::Search.new(value, translation: translation).first hash end end private def all_codes case @code when /\d{4}/ {class: @code, group: @code[0..2], division: @code[0..1], section: section(@code[0..1])} when /\d{3}/ {group: @code, division: @code[0..1], section: section(@code[0..1])} when /\d{2}/ {division: @code, section: section(@code)} when /[A-Z]/ {section: @code} end end def section(division) Isic::DIVISIONS.select { |k,v| v.include?(division) }.keys.first end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
isic-1.0.2 | lib/isic/entity.rb |
isic-1.0.1 | lib/isic/entity.rb |
isic-1.0.0 | lib/isic/entity.rb |