arca.rb 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.devcontainer/Dockerfile +8 -0
- data/.devcontainer/devcontainer.json +12 -0
- data/.github/dependabot.yml +12 -0
- data/.github/workflows/ci.yml +16 -0
- data/.github/workflows/release.yml +37 -0
- data/.gitignore +8 -0
- data/.mise.toml +2 -0
- data/.rubocop.yml +8 -0
- data/.ruby-version +1 -0
- data/CHANGELOG.md +19 -0
- data/CONTRIBUTING.md +48 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +209 -0
- data/Rakefile +10 -0
- data/SECURITY.md +14 -0
- data/arca.gemspec +40 -0
- data/bin/console +7 -0
- data/lib/arca/client.rb +29 -0
- data/lib/arca/core_ext/hash.rb +13 -0
- data/lib/arca/errors/error.rb +13 -0
- data/lib/arca/errors/network_error.rb +15 -0
- data/lib/arca/errors/response_error.rb +18 -0
- data/lib/arca/errors/server_error.rb +6 -0
- data/lib/arca/persona_service_a100.rb +51 -0
- data/lib/arca/persona_service_a4.rb +34 -0
- data/lib/arca/persona_service_a5.rb +46 -0
- data/lib/arca/type_conversions.rb +44 -0
- data/lib/arca/version.rb +5 -0
- data/lib/arca/w_cons_declaracion.rb +66 -0
- data/lib/arca/ws_constancia_inscripcion.rb +34 -0
- data/lib/arca/wsaa.rb +140 -0
- data/lib/arca/wscdc.rb +149 -0
- data/lib/arca/wsfe.rb +205 -0
- data/lib/arca/wsfecred.rb +438 -0
- data/lib/arca/wsrgiva.rb +72 -0
- data/lib/arca.rb +31 -0
- data/test/arca/client_test.rb +43 -0
- data/test/arca/core_ext/hash_test.rb +15 -0
- data/test/arca/persona_service_a100_test.rb +45 -0
- data/test/arca/persona_service_a4_test.rb +31 -0
- data/test/arca/persona_service_a5_test.rb +31 -0
- data/test/arca/test.crt +19 -0
- data/test/arca/test.key +28 -0
- data/test/arca/type_conversions_test.rb +43 -0
- data/test/arca/w_cons_declaracion_test.rb +86 -0
- data/test/arca/ws_constancia_inscripcion_test.rb +87 -0
- data/test/arca/wsaa_test.rb +80 -0
- data/test/arca/wscdc_test.rb +103 -0
- data/test/arca/wsfe_test.rb +319 -0
- data/test/arca/wsfecred_test.rb +162 -0
- data/test/arca/wsrgiva_test.rb +91 -0
- data/test/fixtures/wconsdeclaracion/detallada_estado/success.xml +24 -0
- data/test/fixtures/wconsdeclaracion/detallada_lista_declaraciones/por_fecha_success.xml +39 -0
- data/test/fixtures/wconsdeclaracion/detallada_lista_declaraciones/por_id_inexistente.xml +16 -0
- data/test/fixtures/wconsdeclaracion/detallada_lista_declaraciones/por_id_success.xml +29 -0
- data/test/fixtures/wconsdeclaracion/dummy/success.xml +12 -0
- data/test/fixtures/wconsdeclaracion/wconsdeclaracion.wsdl +2976 -0
- data/test/fixtures/ws_sr_constancia_inscripcion/dummy/success.xml +11 -0
- data/test/fixtures/ws_sr_constancia_inscripcion/get_persona/failure.xml +35 -0
- data/test/fixtures/ws_sr_constancia_inscripcion/get_persona/fault.xml +8 -0
- data/test/fixtures/ws_sr_constancia_inscripcion/get_persona/success.xml +53 -0
- data/test/fixtures/ws_sr_constancia_inscripcion/ws_constancia_inscripcion.wsdl +230 -0
- data/test/fixtures/ws_sr_padron_a100/company_types/success.xml +23 -0
- data/test/fixtures/ws_sr_padron_a100/dummy/success.xml +11 -0
- data/test/fixtures/ws_sr_padron_a100/jurisdictions/success.xml +31 -0
- data/test/fixtures/ws_sr_padron_a100/public_organisms/success.xml +23 -0
- data/test/fixtures/ws_sr_padron_a100.wsdl +125 -0
- data/test/fixtures/ws_sr_padron_a4/dummy/success.xml +11 -0
- data/test/fixtures/ws_sr_padron_a4/get_persona/success.xml +133 -0
- data/test/fixtures/ws_sr_padron_a4.wsdl +229 -0
- data/test/fixtures/ws_sr_padron_a5/dummy/success.xml +11 -0
- data/test/fixtures/ws_sr_padron_a5/get_persona/success.xml +62 -0
- data/test/fixtures/ws_sr_padron_a5.wsdl +283 -0
- data/test/fixtures/wsaa/login_cms/fault.xml +12 -0
- data/test/fixtures/wsaa/login_cms/success.xml +16 -0
- data/test/fixtures/wsaa/login_cms/token_expirado.xml +14 -0
- data/test/fixtures/wsaa/wsaa.wsdl +103 -0
- data/test/fixtures/wscdc/comprobante_constatar/success.xml +22 -0
- data/test/fixtures/wscdc/comprobante_constatar/with_errors.xml +28 -0
- data/test/fixtures/wscdc/comprobante_dummy/success.xml +11 -0
- data/test/fixtures/wscdc/comprobantes_modalidad_consultar/success.xml +22 -0
- data/test/fixtures/wscdc/comprobantes_tipo_consultar/success.xml +22 -0
- data/test/fixtures/wscdc/documentos_tipo_consultar/success.xml +16 -0
- data/test/fixtures/wscdc/opcionales_tipo_consultar/success.xml +14 -0
- data/test/fixtures/wscdc/wscdc.wsdl +305 -0
- data/test/fixtures/wsfe/fe_comp_consultar/success.xml +41 -0
- data/test/fixtures/wsfe/fe_comp_tot_x_request/success.xml +9 -0
- data/test/fixtures/wsfe/fe_comp_ultimo_autorizado/success.xml +11 -0
- data/test/fixtures/wsfe/fe_dummy/success.xml +11 -0
- data/test/fixtures/wsfe/fe_param_get_cotizacion/dolar.xml +13 -0
- data/test/fixtures/wsfe/fe_param_get_cotizacion/inexistente.xml +14 -0
- data/test/fixtures/wsfe/fe_param_get_ptos_venta/success.xml +22 -0
- data/test/fixtures/wsfe/fe_param_get_tipos_cbte/failure_1_error.xml +14 -0
- data/test/fixtures/wsfe/fe_param_get_tipos_cbte/failure_2_errors.xml +18 -0
- data/test/fixtures/wsfe/fe_param_get_tipos_cbte/success.xml +22 -0
- data/test/fixtures/wsfe/fe_param_get_tipos_concepto/success.xml +17 -0
- data/test/fixtures/wsfe/fe_param_get_tipos_doc/success.xml +16 -0
- data/test/fixtures/wsfe/fe_param_get_tipos_iva/success.xml +16 -0
- data/test/fixtures/wsfe/fe_param_get_tipos_monedas/success.xml +22 -0
- data/test/fixtures/wsfe/fe_param_get_tipos_opcional/success.xml +16 -0
- data/test/fixtures/wsfe/fe_param_get_tipos_tributos/success.xml +16 -0
- data/test/fixtures/wsfe/fecae_solicitar/autorizacion_1_cbte.xml +30 -0
- data/test/fixtures/wsfe/fecae_solicitar/autorizacion_2_cbtes.xml +41 -0
- data/test/fixtures/wsfe/fecae_solicitar/dos_observaciones.xml +40 -0
- data/test/fixtures/wsfe/fecae_solicitar/una_observacion.xml +36 -0
- data/test/fixtures/wsfe/fecaea_consultar/success.xml +17 -0
- data/test/fixtures/wsfe/fecaea_reg_informativo/informe_rtdo_parcial.xml +45 -0
- data/test/fixtures/wsfe/fecaea_sin_movimiento_informar/success.xml +12 -0
- data/test/fixtures/wsfe/fecaea_solicitar/caea_ya_otorgado.xml +18 -0
- data/test/fixtures/wsfe/fecaea_solicitar/error_distinto.xml +18 -0
- data/test/fixtures/wsfe/fecaea_solicitar/success.xml +17 -0
- data/test/fixtures/wsfe/wsfe.wsdl +1372 -0
- data/test/fixtures/wsfecred/aceptar_f_e_cred/success.xml +14 -0
- data/test/fixtures/wsfecred/consultar_comprobantes/success.xml +17 -0
- data/test/fixtures/wsfecred/consultar_cta_cte/success.xml +13 -0
- data/test/fixtures/wsfecred/consultar_ctas_ctes/success.xml +16 -0
- data/test/fixtures/wsfecred/consultar_tipos_formas_cancelacion/success.xml +14 -0
- data/test/fixtures/wsfecred/consultar_tipos_motivos_rechazo/success.xml +14 -0
- data/test/fixtures/wsfecred/consultar_tipos_retenciones/failure.xml +14 -0
- data/test/fixtures/wsfecred/consultar_tipos_retenciones/success.xml +14 -0
- data/test/fixtures/wsfecred/dummy/success.xml +11 -0
- data/test/fixtures/wsfecred/wsfecred.wsdl +147 -0
- data/test/fixtures/wsrgiva/consultar_constancia_por_lote/one_error.xml +14 -0
- data/test/fixtures/wsrgiva/consultar_constancia_por_lote/success.xml +26 -0
- data/test/fixtures/wsrgiva/dummy/success.xml +11 -0
- data/test/fixtures/wsrgiva/wsrgiva.wsdl +118 -0
- data/test/support/savon_extensions.rb +43 -0
- data/test/test_helper.rb +44 -0
- metadata +319 -0
metadata
ADDED
|
@@ -0,0 +1,319 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: arca.rb
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Arca Kit
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: minitest
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - ">="
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '0'
|
|
19
|
+
type: :development
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - ">="
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: '0'
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: mocha
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - ">="
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '0'
|
|
33
|
+
type: :development
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - ">="
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '0'
|
|
40
|
+
- !ruby/object:Gem::Dependency
|
|
41
|
+
name: pry
|
|
42
|
+
requirement: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - ">="
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '0'
|
|
47
|
+
type: :development
|
|
48
|
+
prerelease: false
|
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
50
|
+
requirements:
|
|
51
|
+
- - ">="
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: '0'
|
|
54
|
+
- !ruby/object:Gem::Dependency
|
|
55
|
+
name: rake
|
|
56
|
+
requirement: !ruby/object:Gem::Requirement
|
|
57
|
+
requirements:
|
|
58
|
+
- - ">="
|
|
59
|
+
- !ruby/object:Gem::Version
|
|
60
|
+
version: '0'
|
|
61
|
+
type: :development
|
|
62
|
+
prerelease: false
|
|
63
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
64
|
+
requirements:
|
|
65
|
+
- - ">="
|
|
66
|
+
- !ruby/object:Gem::Version
|
|
67
|
+
version: '0'
|
|
68
|
+
- !ruby/object:Gem::Dependency
|
|
69
|
+
name: rubocop-rails-omakase
|
|
70
|
+
requirement: !ruby/object:Gem::Requirement
|
|
71
|
+
requirements:
|
|
72
|
+
- - ">="
|
|
73
|
+
- !ruby/object:Gem::Version
|
|
74
|
+
version: '0'
|
|
75
|
+
type: :development
|
|
76
|
+
prerelease: false
|
|
77
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
78
|
+
requirements:
|
|
79
|
+
- - ">="
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: '0'
|
|
82
|
+
- !ruby/object:Gem::Dependency
|
|
83
|
+
name: activesupport
|
|
84
|
+
requirement: !ruby/object:Gem::Requirement
|
|
85
|
+
requirements:
|
|
86
|
+
- - ">="
|
|
87
|
+
- !ruby/object:Gem::Version
|
|
88
|
+
version: '0'
|
|
89
|
+
type: :runtime
|
|
90
|
+
prerelease: false
|
|
91
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
92
|
+
requirements:
|
|
93
|
+
- - ">="
|
|
94
|
+
- !ruby/object:Gem::Version
|
|
95
|
+
version: '0'
|
|
96
|
+
- !ruby/object:Gem::Dependency
|
|
97
|
+
name: builder
|
|
98
|
+
requirement: !ruby/object:Gem::Requirement
|
|
99
|
+
requirements:
|
|
100
|
+
- - ">="
|
|
101
|
+
- !ruby/object:Gem::Version
|
|
102
|
+
version: '0'
|
|
103
|
+
type: :runtime
|
|
104
|
+
prerelease: false
|
|
105
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
106
|
+
requirements:
|
|
107
|
+
- - ">="
|
|
108
|
+
- !ruby/object:Gem::Version
|
|
109
|
+
version: '0'
|
|
110
|
+
- !ruby/object:Gem::Dependency
|
|
111
|
+
name: httpclient
|
|
112
|
+
requirement: !ruby/object:Gem::Requirement
|
|
113
|
+
requirements:
|
|
114
|
+
- - ">="
|
|
115
|
+
- !ruby/object:Gem::Version
|
|
116
|
+
version: '0'
|
|
117
|
+
type: :runtime
|
|
118
|
+
prerelease: false
|
|
119
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
120
|
+
requirements:
|
|
121
|
+
- - ">="
|
|
122
|
+
- !ruby/object:Gem::Version
|
|
123
|
+
version: '0'
|
|
124
|
+
- !ruby/object:Gem::Dependency
|
|
125
|
+
name: nokogiri
|
|
126
|
+
requirement: !ruby/object:Gem::Requirement
|
|
127
|
+
requirements:
|
|
128
|
+
- - ">="
|
|
129
|
+
- !ruby/object:Gem::Version
|
|
130
|
+
version: '0'
|
|
131
|
+
type: :runtime
|
|
132
|
+
prerelease: false
|
|
133
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
134
|
+
requirements:
|
|
135
|
+
- - ">="
|
|
136
|
+
- !ruby/object:Gem::Version
|
|
137
|
+
version: '0'
|
|
138
|
+
- !ruby/object:Gem::Dependency
|
|
139
|
+
name: savon
|
|
140
|
+
requirement: !ruby/object:Gem::Requirement
|
|
141
|
+
requirements:
|
|
142
|
+
- - "~>"
|
|
143
|
+
- !ruby/object:Gem::Version
|
|
144
|
+
version: 2.15.0
|
|
145
|
+
type: :runtime
|
|
146
|
+
prerelease: false
|
|
147
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
148
|
+
requirements:
|
|
149
|
+
- - "~>"
|
|
150
|
+
- !ruby/object:Gem::Version
|
|
151
|
+
version: 2.15.0
|
|
152
|
+
description: Cliente Ruby para integrar webservices SOAP de ARCA/AFIPen Argentina.
|
|
153
|
+
Soporta facturación electrónica (WSFE), factura electrónica de crédito MiPyMEs (WSFeCred),
|
|
154
|
+
autenticación WSAA, consulta de padrón de contribuyentes, constatación de comprobantes
|
|
155
|
+
fiscales y todos los servicios tributarios de la API de AFIP. Ideal para aplicaciones
|
|
156
|
+
Rails que necesitan generar facturas electrónicas y comprobantes en Argentina.
|
|
157
|
+
email:
|
|
158
|
+
- hola@arcakit.dev
|
|
159
|
+
executables:
|
|
160
|
+
- console
|
|
161
|
+
extensions: []
|
|
162
|
+
extra_rdoc_files: []
|
|
163
|
+
files:
|
|
164
|
+
- ".devcontainer/Dockerfile"
|
|
165
|
+
- ".devcontainer/devcontainer.json"
|
|
166
|
+
- ".github/dependabot.yml"
|
|
167
|
+
- ".github/workflows/ci.yml"
|
|
168
|
+
- ".github/workflows/release.yml"
|
|
169
|
+
- ".gitignore"
|
|
170
|
+
- ".mise.toml"
|
|
171
|
+
- ".rubocop.yml"
|
|
172
|
+
- ".ruby-version"
|
|
173
|
+
- CHANGELOG.md
|
|
174
|
+
- CONTRIBUTING.md
|
|
175
|
+
- Gemfile
|
|
176
|
+
- LICENSE
|
|
177
|
+
- README.md
|
|
178
|
+
- Rakefile
|
|
179
|
+
- SECURITY.md
|
|
180
|
+
- arca.gemspec
|
|
181
|
+
- bin/console
|
|
182
|
+
- lib/arca.rb
|
|
183
|
+
- lib/arca/client.rb
|
|
184
|
+
- lib/arca/core_ext/hash.rb
|
|
185
|
+
- lib/arca/errors/error.rb
|
|
186
|
+
- lib/arca/errors/network_error.rb
|
|
187
|
+
- lib/arca/errors/response_error.rb
|
|
188
|
+
- lib/arca/errors/server_error.rb
|
|
189
|
+
- lib/arca/persona_service_a100.rb
|
|
190
|
+
- lib/arca/persona_service_a4.rb
|
|
191
|
+
- lib/arca/persona_service_a5.rb
|
|
192
|
+
- lib/arca/type_conversions.rb
|
|
193
|
+
- lib/arca/version.rb
|
|
194
|
+
- lib/arca/w_cons_declaracion.rb
|
|
195
|
+
- lib/arca/ws_constancia_inscripcion.rb
|
|
196
|
+
- lib/arca/wsaa.rb
|
|
197
|
+
- lib/arca/wscdc.rb
|
|
198
|
+
- lib/arca/wsfe.rb
|
|
199
|
+
- lib/arca/wsfecred.rb
|
|
200
|
+
- lib/arca/wsrgiva.rb
|
|
201
|
+
- test/arca/client_test.rb
|
|
202
|
+
- test/arca/core_ext/hash_test.rb
|
|
203
|
+
- test/arca/persona_service_a100_test.rb
|
|
204
|
+
- test/arca/persona_service_a4_test.rb
|
|
205
|
+
- test/arca/persona_service_a5_test.rb
|
|
206
|
+
- test/arca/test.crt
|
|
207
|
+
- test/arca/test.key
|
|
208
|
+
- test/arca/type_conversions_test.rb
|
|
209
|
+
- test/arca/w_cons_declaracion_test.rb
|
|
210
|
+
- test/arca/ws_constancia_inscripcion_test.rb
|
|
211
|
+
- test/arca/wsaa_test.rb
|
|
212
|
+
- test/arca/wscdc_test.rb
|
|
213
|
+
- test/arca/wsfe_test.rb
|
|
214
|
+
- test/arca/wsfecred_test.rb
|
|
215
|
+
- test/arca/wsrgiva_test.rb
|
|
216
|
+
- test/fixtures/wconsdeclaracion/detallada_estado/success.xml
|
|
217
|
+
- test/fixtures/wconsdeclaracion/detallada_lista_declaraciones/por_fecha_success.xml
|
|
218
|
+
- test/fixtures/wconsdeclaracion/detallada_lista_declaraciones/por_id_inexistente.xml
|
|
219
|
+
- test/fixtures/wconsdeclaracion/detallada_lista_declaraciones/por_id_success.xml
|
|
220
|
+
- test/fixtures/wconsdeclaracion/dummy/success.xml
|
|
221
|
+
- test/fixtures/wconsdeclaracion/wconsdeclaracion.wsdl
|
|
222
|
+
- test/fixtures/ws_sr_constancia_inscripcion/dummy/success.xml
|
|
223
|
+
- test/fixtures/ws_sr_constancia_inscripcion/get_persona/failure.xml
|
|
224
|
+
- test/fixtures/ws_sr_constancia_inscripcion/get_persona/fault.xml
|
|
225
|
+
- test/fixtures/ws_sr_constancia_inscripcion/get_persona/success.xml
|
|
226
|
+
- test/fixtures/ws_sr_constancia_inscripcion/ws_constancia_inscripcion.wsdl
|
|
227
|
+
- test/fixtures/ws_sr_padron_a100.wsdl
|
|
228
|
+
- test/fixtures/ws_sr_padron_a100/company_types/success.xml
|
|
229
|
+
- test/fixtures/ws_sr_padron_a100/dummy/success.xml
|
|
230
|
+
- test/fixtures/ws_sr_padron_a100/jurisdictions/success.xml
|
|
231
|
+
- test/fixtures/ws_sr_padron_a100/public_organisms/success.xml
|
|
232
|
+
- test/fixtures/ws_sr_padron_a4.wsdl
|
|
233
|
+
- test/fixtures/ws_sr_padron_a4/dummy/success.xml
|
|
234
|
+
- test/fixtures/ws_sr_padron_a4/get_persona/success.xml
|
|
235
|
+
- test/fixtures/ws_sr_padron_a5.wsdl
|
|
236
|
+
- test/fixtures/ws_sr_padron_a5/dummy/success.xml
|
|
237
|
+
- test/fixtures/ws_sr_padron_a5/get_persona/success.xml
|
|
238
|
+
- test/fixtures/wsaa/login_cms/fault.xml
|
|
239
|
+
- test/fixtures/wsaa/login_cms/success.xml
|
|
240
|
+
- test/fixtures/wsaa/login_cms/token_expirado.xml
|
|
241
|
+
- test/fixtures/wsaa/wsaa.wsdl
|
|
242
|
+
- test/fixtures/wscdc/comprobante_constatar/success.xml
|
|
243
|
+
- test/fixtures/wscdc/comprobante_constatar/with_errors.xml
|
|
244
|
+
- test/fixtures/wscdc/comprobante_dummy/success.xml
|
|
245
|
+
- test/fixtures/wscdc/comprobantes_modalidad_consultar/success.xml
|
|
246
|
+
- test/fixtures/wscdc/comprobantes_tipo_consultar/success.xml
|
|
247
|
+
- test/fixtures/wscdc/documentos_tipo_consultar/success.xml
|
|
248
|
+
- test/fixtures/wscdc/opcionales_tipo_consultar/success.xml
|
|
249
|
+
- test/fixtures/wscdc/wscdc.wsdl
|
|
250
|
+
- test/fixtures/wsfe/fe_comp_consultar/success.xml
|
|
251
|
+
- test/fixtures/wsfe/fe_comp_tot_x_request/success.xml
|
|
252
|
+
- test/fixtures/wsfe/fe_comp_ultimo_autorizado/success.xml
|
|
253
|
+
- test/fixtures/wsfe/fe_dummy/success.xml
|
|
254
|
+
- test/fixtures/wsfe/fe_param_get_cotizacion/dolar.xml
|
|
255
|
+
- test/fixtures/wsfe/fe_param_get_cotizacion/inexistente.xml
|
|
256
|
+
- test/fixtures/wsfe/fe_param_get_ptos_venta/success.xml
|
|
257
|
+
- test/fixtures/wsfe/fe_param_get_tipos_cbte/failure_1_error.xml
|
|
258
|
+
- test/fixtures/wsfe/fe_param_get_tipos_cbte/failure_2_errors.xml
|
|
259
|
+
- test/fixtures/wsfe/fe_param_get_tipos_cbte/success.xml
|
|
260
|
+
- test/fixtures/wsfe/fe_param_get_tipos_concepto/success.xml
|
|
261
|
+
- test/fixtures/wsfe/fe_param_get_tipos_doc/success.xml
|
|
262
|
+
- test/fixtures/wsfe/fe_param_get_tipos_iva/success.xml
|
|
263
|
+
- test/fixtures/wsfe/fe_param_get_tipos_monedas/success.xml
|
|
264
|
+
- test/fixtures/wsfe/fe_param_get_tipos_opcional/success.xml
|
|
265
|
+
- test/fixtures/wsfe/fe_param_get_tipos_tributos/success.xml
|
|
266
|
+
- test/fixtures/wsfe/fecae_solicitar/autorizacion_1_cbte.xml
|
|
267
|
+
- test/fixtures/wsfe/fecae_solicitar/autorizacion_2_cbtes.xml
|
|
268
|
+
- test/fixtures/wsfe/fecae_solicitar/dos_observaciones.xml
|
|
269
|
+
- test/fixtures/wsfe/fecae_solicitar/una_observacion.xml
|
|
270
|
+
- test/fixtures/wsfe/fecaea_consultar/success.xml
|
|
271
|
+
- test/fixtures/wsfe/fecaea_reg_informativo/informe_rtdo_parcial.xml
|
|
272
|
+
- test/fixtures/wsfe/fecaea_sin_movimiento_informar/success.xml
|
|
273
|
+
- test/fixtures/wsfe/fecaea_solicitar/caea_ya_otorgado.xml
|
|
274
|
+
- test/fixtures/wsfe/fecaea_solicitar/error_distinto.xml
|
|
275
|
+
- test/fixtures/wsfe/fecaea_solicitar/success.xml
|
|
276
|
+
- test/fixtures/wsfe/wsfe.wsdl
|
|
277
|
+
- test/fixtures/wsfecred/aceptar_f_e_cred/success.xml
|
|
278
|
+
- test/fixtures/wsfecred/consultar_comprobantes/success.xml
|
|
279
|
+
- test/fixtures/wsfecred/consultar_cta_cte/success.xml
|
|
280
|
+
- test/fixtures/wsfecred/consultar_ctas_ctes/success.xml
|
|
281
|
+
- test/fixtures/wsfecred/consultar_tipos_formas_cancelacion/success.xml
|
|
282
|
+
- test/fixtures/wsfecred/consultar_tipos_motivos_rechazo/success.xml
|
|
283
|
+
- test/fixtures/wsfecred/consultar_tipos_retenciones/failure.xml
|
|
284
|
+
- test/fixtures/wsfecred/consultar_tipos_retenciones/success.xml
|
|
285
|
+
- test/fixtures/wsfecred/dummy/success.xml
|
|
286
|
+
- test/fixtures/wsfecred/wsfecred.wsdl
|
|
287
|
+
- test/fixtures/wsrgiva/consultar_constancia_por_lote/one_error.xml
|
|
288
|
+
- test/fixtures/wsrgiva/consultar_constancia_por_lote/success.xml
|
|
289
|
+
- test/fixtures/wsrgiva/dummy/success.xml
|
|
290
|
+
- test/fixtures/wsrgiva/wsrgiva.wsdl
|
|
291
|
+
- test/support/savon_extensions.rb
|
|
292
|
+
- test/test_helper.rb
|
|
293
|
+
homepage: https://arcakit.dev
|
|
294
|
+
licenses:
|
|
295
|
+
- MIT
|
|
296
|
+
metadata:
|
|
297
|
+
source_code_uri: https://github.com/arcakit/arca.rb
|
|
298
|
+
bug_tracker_uri: https://github.com/arcakit/arca.rb/issues
|
|
299
|
+
changelog_uri: https://github.com/arcakit/arca.rb/blob/main/CHANGELOG.md
|
|
300
|
+
rubygems_mfa_required: 'true'
|
|
301
|
+
rdoc_options: []
|
|
302
|
+
require_paths:
|
|
303
|
+
- lib
|
|
304
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
305
|
+
requirements:
|
|
306
|
+
- - ">="
|
|
307
|
+
- !ruby/object:Gem::Version
|
|
308
|
+
version: 3.3.4
|
|
309
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
310
|
+
requirements:
|
|
311
|
+
- - ">="
|
|
312
|
+
- !ruby/object:Gem::Version
|
|
313
|
+
version: '0'
|
|
314
|
+
requirements: []
|
|
315
|
+
rubygems_version: 3.6.9
|
|
316
|
+
specification_version: 4
|
|
317
|
+
summary: 'Cliente Ruby para webservices de AFIP/ARCA: facturación electrónica, comprobantes
|
|
318
|
+
y servicios tributarios de Argentina'
|
|
319
|
+
test_files: []
|