Class: Brcobranca::Configuration
- Inherits:
-
Object
- Object
- Brcobranca::Configuration
- Defined in:
- lib/brcobranca.rb
Overview
Configurações do Brcobranca.
Para mudar as configurações padrão, você pode fazer assim: config/environments/test.rb:
Brcobranca.setup do |config|
config.formato = :gif
end
Ou colocar em um arquivo na pasta initializer do rails.
Instance Attribute Summary collapse
-
#external_encoding ⇒ String
Ajusta o encoding do texto do boleto enviado para o GhostScript O valor ‘ascii-8bit’ evita problemas com acentos e cedilha.
-
#formato ⇒ Symbol
Formato do arquivo de boleto a ser gerado.
-
#gerador ⇒ Symbol
Gerador de arquivo de boleto.
-
#resolucao ⇒ Integer
Resolução em pixels do arquivo gerado.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
Atribui valores padrões de configuração.
Constructor Details
#initialize ⇒ Configuration
Atribui valores padrões de configuração
80 81 82 83 84 85 |
# File 'lib/brcobranca.rb', line 80 def initialize self.gerador = :rghost self.formato = :pdf self.resolucao = 150 self.external_encoding = 'ascii-8bit' end |
Instance Attribute Details
#external_encoding ⇒ String
Ajusta o encoding do texto do boleto enviado para o GhostScript O valor ‘ascii-8bit’ evita problemas com acentos e cedilha
77 78 79 |
# File 'lib/brcobranca.rb', line 77 def external_encoding @external_encoding end |
#formato ⇒ Symbol
Formato do arquivo de boleto a ser gerado.
66 67 68 |
# File 'lib/brcobranca.rb', line 66 def formato @formato end |
#gerador ⇒ Symbol
Gerador de arquivo de boleto.
61 62 63 |
# File 'lib/brcobranca.rb', line 61 def gerador @gerador end |
#resolucao ⇒ Integer
Resolução em pixels do arquivo gerado.
71 72 73 |
# File 'lib/brcobranca.rb', line 71 def resolucao @resolucao end |