Sha256: 604156508928a66a0fa5456796c888062ae271559a4a9cbabd05d6bc8257d65c
Contents?: true
Size: 1.06 KB
Versions: 2
Compression:
Stored size: 1.06 KB
Contents
class Valvat def initialize(raw) @raw = Valvat::Utils.normalize(raw || "") @vat_country_code, @to_s_wo_country = to_a end attr_reader :raw, :vat_country_code, :to_s_wo_country def valid? Valvat::Syntax.validate(self) end def valid_checksum? Valvat::Checksum.validate(self) end def exists?(options={}) Valvat::Lookup.validate(self, options) end alias_method :exist?, :exists? def iso_country_code Valvat::Utils.vat_country_to_iso_country(vat_country_code) end def european? Valvat::Utils::EU_COUNTRIES.include?(iso_country_code) end def to_a Valvat::Utils.split(raw) end def to_s raw end def inspect "#<Valvat #{[raw, iso_country_code].compact.join(" ")}>" end end def Valvat(vat) vat.is_a?(Valvat) ? vat : Valvat.new(vat) end require 'valvat/utils' require 'valvat/syntax' require 'valvat/checksum' require 'valvat/lookup' require 'valvat/lookup/request' require 'valvat/lookup/request_with_id' require 'valvat/version' require 'active_model/validations/valvat_validator' if defined?(ActiveModel)
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
valvat-0.6.1 | lib/valvat.rb |
valvat-0.6.0 | lib/valvat.rb |