Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/acrogenesis/rfc_facil
Calcula el RFC con homoclave en Ruby.
https://github.com/acrogenesis/rfc_facil
Last synced: 17 days ago
JSON representation
Calcula el RFC con homoclave en Ruby.
- Host: GitHub
- URL: https://github.com/acrogenesis/rfc_facil
- Owner: acrogenesis
- Created: 2015-10-11T21:38:47.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2021-02-27T03:10:40.000Z (over 3 years ago)
- Last Synced: 2024-10-12T13:36:07.286Z (about 1 month ago)
- Language: Ruby
- Homepage: https://acrogenesis.github.io/rfc_facil
- Size: 51.8 KB
- Stars: 14
- Watchers: 5
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rfc Fácil
[![Code Climate](https://codeclimate.com/github/Munett/rfc_facil/badges/gpa.svg)](https://codeclimate.com/github/Munett/rfc_facil)
[![Test Coverage](https://codeclimate.com/github/Munett/rfc_facil/badges/coverage.svg)](https://codeclimate.com/github/Munett/rfc_facil/coverage)![](https://github.com/Munett/rfc_facil/raw/master/logo.png)
Libreria para calcular el Registro Federal de Contribuyentes en México (RFC) en Ruby.
[![Build Status](https://travis-ci.org/Munett/rfc_facil.svg?branch=master)](https://travis-ci.org/Munett/rfc_facil)
## Uso
```ruby
gem 'rfc_facil'
```
Calcular el rfc de una persona física es muy sencillo:
```ruby
rfc = RfcFacil::Rfc.new(name: 'Adrián Marcelo', first_last_name: 'Rangel', second_last_name: 'Araujo', day: 27, month: 11, year: 1992)
rfc.to_s # => 'RAAA921127RI6'
```## Fuente
Esta librería se basa en documentación oficial obtenida por medio del IFAI (Instituto Federal de Acceso a la Información). El documento puede ser consultado en el sitio de [INFOMEX](https://www.infomex.org.mx/gobiernofederal/moduloPublico/moduloPublico.action) con el folio 0610100135506.## En otros lenguajes
- .NET [migsalazar/RfcFacil](https://github.com/migsalazar/RfcFacil)### Agradecimiento
El código es una version en Ruby de [rfc-facil](https://github.com/josketres/rfc-facil) hecha en Java por [josketres](https://github.com/josketres)## Colabora
Errores y pull requests son bienvenidos en Github: https://github.com/Munett/rfc_facil.