Module: BrNfe::StringMethods

Defined in:
lib/br_nfe/helper/string_methods.rb

Instance Method Summary collapse

Instance Method Details

#max_size(size = 255) ⇒ Object



13
14
15
# File 'lib/br_nfe/helper/string_methods.rb', line 13

def max_size(size=255)
	self.truncate(size, omission: '')
end

#remove_accentsObject



9
10
11
# File 'lib/br_nfe/helper/string_methods.rb', line 9

def remove_accents
	ActiveSupport::Inflector.transliterate(self)
end

#to_valid_format_nfObject



5
6
7
# File 'lib/br_nfe/helper/string_methods.rb', line 5

def to_valid_format_nf
	remove_accents.upcase
end