Sha256: 37b545e9785737fae08176af19c89af08fec18b9288431ef828ce01d4f355540

Contents?: true

Size: 639 Bytes

Versions: 1

Compression:

Stored size: 639 Bytes

Contents

class Mic

  require 'csv'

  FILE = 'files/ISO10383.csv'

  class << self

    def where(options = {})
      include_segments = options[:include_segments] || false
      puts include_segments
      a = Mic::Search.new
      a = a.select_by(:mic, options[:mic], include_segments) if options[:mic]
      a = a.select_by(:operating_mic, options[:operating_mic], include_segments) if options[:operating_mic]
      a = a.select_by(:market_name, options[:market_name], include_segments) if options[:market_name]
      a = a.select_by(:country_code, options[:country_code], include_segments) if options[:country_code]
      a
    end

  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mic-0.9.0 lib/mic/mic.rb