Sha256: 9970b2202b51bf48fda63a2089c1fe48ad0848e32ff1bd0685cff58400650273
Contents?: true
Size: 960 Bytes
Versions: 3
Compression:
Stored size: 960 Bytes
Contents
# Afipws Ruby client para los web services de la AFIP. [![Build Status](https://travis-ci.org/eeng/afipws.svg?branch=master)](https://travis-ci.org/eeng/afipws) ## Uso Primero hay que crear la clave privada y obtener el certificado correspondiente según los pasos indicados [aquí](http://www.afip.gov.ar/ws/WSAA/cert-req-howto.txt). Luego hay que instalar la librería: ```ruby gem install afipws ``` Y por último usamos el web service de esta forma: ```ruby require 'afipws' ws = Afipws::WSFE.new env: :development, cuit: '...', key: File.read('test.key'), cert: File.read('test.crt') puts ws.cotizacion 'DOL' ``` De momento sólo están soportados los servicios WSAA y WSFEv1. Ver specs para más ejemplos. ## Contributing 1. Fork it 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Add some feature'`) 4. Push to the branch (`git push origin my-new-feature`) 5. Create new Pull Request
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
afipws-1.0.3 | README.md |
afipws-1.0.2 | README.md |
afipws-1.0.1 | README.md |