├── .gitignore ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── README.mkdn ├── RELEASES ├── Rakefile ├── brI18n ├── CHANGELOG ├── MIT-LICENSE ├── README ├── Rakefile └── lib │ ├── brI18n.rb │ ├── brI18n │ └── version.rb │ └── files │ └── pt-BR.yml ├── brcep ├── CHANGELOG ├── MIT-LICENSE ├── README ├── README.mkdn ├── Rakefile ├── lib │ ├── brcep.rb │ └── brcep │ │ ├── busca_endereco.rb │ │ └── version.rb ├── rails │ └── init.rb └── test │ ├── busca_endereco_test.rb │ └── test_helper.rb ├── brcpfcnpj ├── CHANGELOG ├── MIT-LICENSE ├── README.mkdn ├── Rakefile ├── lib │ ├── brcpfcnpj.rb │ └── brcpfcnpj │ │ ├── cnpj.rb │ │ ├── cnpj_validator.rb │ │ ├── cpf.rb │ │ ├── cpf_cnpj.rb │ │ ├── cpf_cnpj_activerecord.rb │ │ ├── cpf_validator.rb │ │ └── version.rb ├── rails │ └── init.rb └── spec │ ├── active_record │ └── base_without_table.rb │ ├── cnpj_active_record_spec.rb │ ├── cnpj_spec.rb │ ├── cnpj_validator_spec.rb │ ├── cpf_active_record_spec.rb │ ├── cpf_spec.rb │ ├── cpf_validator_spec.rb │ ├── db │ ├── .create_testing_structure.rb.swp │ └── create_testing_structure.rb │ └── spec_helper.rb ├── brdata ├── CHANGELOG ├── MIT-LICENSE ├── README ├── Rakefile ├── lib │ ├── brdata.rb │ └── brdata │ │ ├── br_date_helper.rb │ │ ├── config │ │ ├── nacionais_fixos.yml │ │ └── nacionais_moveis.yml │ │ ├── date_portuguese.rb │ │ ├── excecoes.rb │ │ ├── feriado.rb │ │ ├── feriado_parser.rb │ │ ├── time_portuguese.rb │ │ └── version.rb ├── rails │ └── init.rb ├── samples │ └── feriado │ │ ├── nacionais_fixos.yml │ │ └── nacionais_moveis.yml └── test │ ├── br_date_helper_test.rb │ ├── date_test.rb │ ├── feriado_parser_test.rb │ ├── feriado_test.rb │ ├── test_helper.rb │ └── time_test.rb ├── brdinheiro ├── CHANGELOG ├── MIT-LICENSE ├── README ├── Rakefile ├── lib │ ├── brdinheiro.rb │ └── brdinheiro │ │ ├── dinheiro.rb │ │ ├── dinheiro_active_record.rb │ │ ├── dinheiro_util.rb │ │ ├── excecoes.rb │ │ ├── nil_class.rb │ │ └── version.rb ├── rails │ └── init.rb ├── samples │ └── dinheiro │ │ ├── 001_create_lancamentos.rb │ │ ├── README │ │ └── lancamento.rb └── test │ ├── active_record │ └── base_without_table.rb │ ├── br_dinheiro_test.rb │ ├── dinheiro_active_record_test.rb │ ├── dinheiro_test.rb │ ├── nil_class_test.rb │ └── test_helper.rb ├── brhelper ├── CHANGELOG ├── MIT-LICENSE ├── README ├── Rakefile ├── lib │ ├── brhelper.rb │ └── brhelper │ │ ├── br_form_helper.rb │ │ ├── br_form_options_helper.rb │ │ └── version.rb ├── rails │ └── init.rb └── test │ ├── br_form_helper_test.rb │ ├── br_form_options_helper_test.rb │ └── test_helper.rb ├── brnumeros ├── CHANGELOG ├── MIT-LICENSE ├── README ├── Rakefile ├── lib │ ├── brnumeros.rb │ └── brnumeros │ │ ├── number_portuguese.rb │ │ └── version.rb ├── rails │ └── init.rb └── test │ ├── number_test.rb │ └── test_helper.rb ├── brstring ├── CHANGELOG ├── MIT-LICENSE ├── README ├── Rakefile ├── lib │ ├── brstring.rb │ └── brstring │ │ ├── string_portuguese.rb │ │ └── version.rb ├── rails │ └── init.rb └── test │ ├── string_portuguese_test.rb │ └── test_helper.rb ├── gemfiles ├── on_rails_23x.gemfile ├── on_rails_30x.gemfile ├── on_rails_31x.gemfile └── on_rails_32x.gemfile ├── init.rb └── lib ├── brazilian-rails.rb └── inflector_portuguese.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.mkdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/README.mkdn -------------------------------------------------------------------------------- /RELEASES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/RELEASES -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/Rakefile -------------------------------------------------------------------------------- /brI18n/CHANGELOG: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /brI18n/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brI18n/MIT-LICENSE -------------------------------------------------------------------------------- /brI18n/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brI18n/README -------------------------------------------------------------------------------- /brI18n/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brI18n/Rakefile -------------------------------------------------------------------------------- /brI18n/lib/brI18n.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brI18n/lib/brI18n.rb -------------------------------------------------------------------------------- /brI18n/lib/brI18n/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brI18n/lib/brI18n/version.rb -------------------------------------------------------------------------------- /brI18n/lib/files/pt-BR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brI18n/lib/files/pt-BR.yml -------------------------------------------------------------------------------- /brcep/CHANGELOG: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /brcep/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brcep/MIT-LICENSE -------------------------------------------------------------------------------- /brcep/README: -------------------------------------------------------------------------------- 1 | Aqui vai o readme... -------------------------------------------------------------------------------- /brcep/README.mkdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brcep/README.mkdn -------------------------------------------------------------------------------- /brcep/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brcep/Rakefile -------------------------------------------------------------------------------- /brcep/lib/brcep.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brcep/lib/brcep.rb -------------------------------------------------------------------------------- /brcep/lib/brcep/busca_endereco.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brcep/lib/brcep/busca_endereco.rb -------------------------------------------------------------------------------- /brcep/lib/brcep/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brcep/lib/brcep/version.rb -------------------------------------------------------------------------------- /brcep/rails/init.rb: -------------------------------------------------------------------------------- 1 | require File.dirname(__FILE__) + '/../lib/brcep' -------------------------------------------------------------------------------- /brcep/test/busca_endereco_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brcep/test/busca_endereco_test.rb -------------------------------------------------------------------------------- /brcep/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brcep/test/test_helper.rb -------------------------------------------------------------------------------- /brcpfcnpj/CHANGELOG: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /brcpfcnpj/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brcpfcnpj/MIT-LICENSE -------------------------------------------------------------------------------- /brcpfcnpj/README.mkdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brcpfcnpj/README.mkdn -------------------------------------------------------------------------------- /brcpfcnpj/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brcpfcnpj/Rakefile -------------------------------------------------------------------------------- /brcpfcnpj/lib/brcpfcnpj.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brcpfcnpj/lib/brcpfcnpj.rb -------------------------------------------------------------------------------- /brcpfcnpj/lib/brcpfcnpj/cnpj.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brcpfcnpj/lib/brcpfcnpj/cnpj.rb -------------------------------------------------------------------------------- /brcpfcnpj/lib/brcpfcnpj/cnpj_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brcpfcnpj/lib/brcpfcnpj/cnpj_validator.rb -------------------------------------------------------------------------------- /brcpfcnpj/lib/brcpfcnpj/cpf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brcpfcnpj/lib/brcpfcnpj/cpf.rb -------------------------------------------------------------------------------- /brcpfcnpj/lib/brcpfcnpj/cpf_cnpj.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brcpfcnpj/lib/brcpfcnpj/cpf_cnpj.rb -------------------------------------------------------------------------------- /brcpfcnpj/lib/brcpfcnpj/cpf_cnpj_activerecord.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brcpfcnpj/lib/brcpfcnpj/cpf_cnpj_activerecord.rb -------------------------------------------------------------------------------- /brcpfcnpj/lib/brcpfcnpj/cpf_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brcpfcnpj/lib/brcpfcnpj/cpf_validator.rb -------------------------------------------------------------------------------- /brcpfcnpj/lib/brcpfcnpj/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brcpfcnpj/lib/brcpfcnpj/version.rb -------------------------------------------------------------------------------- /brcpfcnpj/rails/init.rb: -------------------------------------------------------------------------------- 1 | # -*- encoding : utf-8 -*- 2 | require File.dirname(__FILE__) + '/../lib/brcpfcnpj' 3 | -------------------------------------------------------------------------------- /brcpfcnpj/spec/active_record/base_without_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brcpfcnpj/spec/active_record/base_without_table.rb -------------------------------------------------------------------------------- /brcpfcnpj/spec/cnpj_active_record_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brcpfcnpj/spec/cnpj_active_record_spec.rb -------------------------------------------------------------------------------- /brcpfcnpj/spec/cnpj_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brcpfcnpj/spec/cnpj_spec.rb -------------------------------------------------------------------------------- /brcpfcnpj/spec/cnpj_validator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brcpfcnpj/spec/cnpj_validator_spec.rb -------------------------------------------------------------------------------- /brcpfcnpj/spec/cpf_active_record_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brcpfcnpj/spec/cpf_active_record_spec.rb -------------------------------------------------------------------------------- /brcpfcnpj/spec/cpf_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brcpfcnpj/spec/cpf_spec.rb -------------------------------------------------------------------------------- /brcpfcnpj/spec/cpf_validator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brcpfcnpj/spec/cpf_validator_spec.rb -------------------------------------------------------------------------------- /brcpfcnpj/spec/db/.create_testing_structure.rb.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brcpfcnpj/spec/db/.create_testing_structure.rb.swp -------------------------------------------------------------------------------- /brcpfcnpj/spec/db/create_testing_structure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brcpfcnpj/spec/db/create_testing_structure.rb -------------------------------------------------------------------------------- /brcpfcnpj/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brcpfcnpj/spec/spec_helper.rb -------------------------------------------------------------------------------- /brdata/CHANGELOG: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /brdata/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdata/MIT-LICENSE -------------------------------------------------------------------------------- /brdata/README: -------------------------------------------------------------------------------- 1 | Aqui vai o readme -------------------------------------------------------------------------------- /brdata/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdata/Rakefile -------------------------------------------------------------------------------- /brdata/lib/brdata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdata/lib/brdata.rb -------------------------------------------------------------------------------- /brdata/lib/brdata/br_date_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdata/lib/brdata/br_date_helper.rb -------------------------------------------------------------------------------- /brdata/lib/brdata/config/nacionais_fixos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdata/lib/brdata/config/nacionais_fixos.yml -------------------------------------------------------------------------------- /brdata/lib/brdata/config/nacionais_moveis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdata/lib/brdata/config/nacionais_moveis.yml -------------------------------------------------------------------------------- /brdata/lib/brdata/date_portuguese.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdata/lib/brdata/date_portuguese.rb -------------------------------------------------------------------------------- /brdata/lib/brdata/excecoes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdata/lib/brdata/excecoes.rb -------------------------------------------------------------------------------- /brdata/lib/brdata/feriado.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdata/lib/brdata/feriado.rb -------------------------------------------------------------------------------- /brdata/lib/brdata/feriado_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdata/lib/brdata/feriado_parser.rb -------------------------------------------------------------------------------- /brdata/lib/brdata/time_portuguese.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdata/lib/brdata/time_portuguese.rb -------------------------------------------------------------------------------- /brdata/lib/brdata/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdata/lib/brdata/version.rb -------------------------------------------------------------------------------- /brdata/rails/init.rb: -------------------------------------------------------------------------------- 1 | require File.dirname(__FILE__) + '/../lib/brdata' -------------------------------------------------------------------------------- /brdata/samples/feriado/nacionais_fixos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdata/samples/feriado/nacionais_fixos.yml -------------------------------------------------------------------------------- /brdata/samples/feriado/nacionais_moveis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdata/samples/feriado/nacionais_moveis.yml -------------------------------------------------------------------------------- /brdata/test/br_date_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdata/test/br_date_helper_test.rb -------------------------------------------------------------------------------- /brdata/test/date_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdata/test/date_test.rb -------------------------------------------------------------------------------- /brdata/test/feriado_parser_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdata/test/feriado_parser_test.rb -------------------------------------------------------------------------------- /brdata/test/feriado_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdata/test/feriado_test.rb -------------------------------------------------------------------------------- /brdata/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdata/test/test_helper.rb -------------------------------------------------------------------------------- /brdata/test/time_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdata/test/time_test.rb -------------------------------------------------------------------------------- /brdinheiro/CHANGELOG: -------------------------------------------------------------------------------- 1 | Version 0.0.1 -> Versão beta da gem. -------------------------------------------------------------------------------- /brdinheiro/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdinheiro/MIT-LICENSE -------------------------------------------------------------------------------- /brdinheiro/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdinheiro/README -------------------------------------------------------------------------------- /brdinheiro/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdinheiro/Rakefile -------------------------------------------------------------------------------- /brdinheiro/lib/brdinheiro.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdinheiro/lib/brdinheiro.rb -------------------------------------------------------------------------------- /brdinheiro/lib/brdinheiro/dinheiro.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdinheiro/lib/brdinheiro/dinheiro.rb -------------------------------------------------------------------------------- /brdinheiro/lib/brdinheiro/dinheiro_active_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdinheiro/lib/brdinheiro/dinheiro_active_record.rb -------------------------------------------------------------------------------- /brdinheiro/lib/brdinheiro/dinheiro_util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdinheiro/lib/brdinheiro/dinheiro_util.rb -------------------------------------------------------------------------------- /brdinheiro/lib/brdinheiro/excecoes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdinheiro/lib/brdinheiro/excecoes.rb -------------------------------------------------------------------------------- /brdinheiro/lib/brdinheiro/nil_class.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdinheiro/lib/brdinheiro/nil_class.rb -------------------------------------------------------------------------------- /brdinheiro/lib/brdinheiro/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdinheiro/lib/brdinheiro/version.rb -------------------------------------------------------------------------------- /brdinheiro/rails/init.rb: -------------------------------------------------------------------------------- 1 | require File.dirname(__FILE__) + '/../lib/brdinheiro' 2 | -------------------------------------------------------------------------------- /brdinheiro/samples/dinheiro/001_create_lancamentos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdinheiro/samples/dinheiro/001_create_lancamentos.rb -------------------------------------------------------------------------------- /brdinheiro/samples/dinheiro/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdinheiro/samples/dinheiro/README -------------------------------------------------------------------------------- /brdinheiro/samples/dinheiro/lancamento.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdinheiro/samples/dinheiro/lancamento.rb -------------------------------------------------------------------------------- /brdinheiro/test/active_record/base_without_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdinheiro/test/active_record/base_without_table.rb -------------------------------------------------------------------------------- /brdinheiro/test/br_dinheiro_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdinheiro/test/br_dinheiro_test.rb -------------------------------------------------------------------------------- /brdinheiro/test/dinheiro_active_record_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdinheiro/test/dinheiro_active_record_test.rb -------------------------------------------------------------------------------- /brdinheiro/test/dinheiro_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdinheiro/test/dinheiro_test.rb -------------------------------------------------------------------------------- /brdinheiro/test/nil_class_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdinheiro/test/nil_class_test.rb -------------------------------------------------------------------------------- /brdinheiro/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brdinheiro/test/test_helper.rb -------------------------------------------------------------------------------- /brhelper/CHANGELOG: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /brhelper/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brhelper/MIT-LICENSE -------------------------------------------------------------------------------- /brhelper/README: -------------------------------------------------------------------------------- 1 | Aqui vai o readme... -------------------------------------------------------------------------------- /brhelper/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brhelper/Rakefile -------------------------------------------------------------------------------- /brhelper/lib/brhelper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brhelper/lib/brhelper.rb -------------------------------------------------------------------------------- /brhelper/lib/brhelper/br_form_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brhelper/lib/brhelper/br_form_helper.rb -------------------------------------------------------------------------------- /brhelper/lib/brhelper/br_form_options_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brhelper/lib/brhelper/br_form_options_helper.rb -------------------------------------------------------------------------------- /brhelper/lib/brhelper/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brhelper/lib/brhelper/version.rb -------------------------------------------------------------------------------- /brhelper/rails/init.rb: -------------------------------------------------------------------------------- 1 | require File.dirname(__FILE__) + '/../lib/brhelper' -------------------------------------------------------------------------------- /brhelper/test/br_form_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brhelper/test/br_form_helper_test.rb -------------------------------------------------------------------------------- /brhelper/test/br_form_options_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brhelper/test/br_form_options_helper_test.rb -------------------------------------------------------------------------------- /brhelper/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brhelper/test/test_helper.rb -------------------------------------------------------------------------------- /brnumeros/CHANGELOG: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /brnumeros/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brnumeros/MIT-LICENSE -------------------------------------------------------------------------------- /brnumeros/README: -------------------------------------------------------------------------------- 1 | Aqui vai o README. -------------------------------------------------------------------------------- /brnumeros/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brnumeros/Rakefile -------------------------------------------------------------------------------- /brnumeros/lib/brnumeros.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brnumeros/lib/brnumeros.rb -------------------------------------------------------------------------------- /brnumeros/lib/brnumeros/number_portuguese.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brnumeros/lib/brnumeros/number_portuguese.rb -------------------------------------------------------------------------------- /brnumeros/lib/brnumeros/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brnumeros/lib/brnumeros/version.rb -------------------------------------------------------------------------------- /brnumeros/rails/init.rb: -------------------------------------------------------------------------------- 1 | require File.dirname(__FILE__) + '/../lib/brnumeros' 2 | -------------------------------------------------------------------------------- /brnumeros/test/number_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brnumeros/test/number_test.rb -------------------------------------------------------------------------------- /brnumeros/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brnumeros/test/test_helper.rb -------------------------------------------------------------------------------- /brstring/CHANGELOG: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /brstring/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brstring/MIT-LICENSE -------------------------------------------------------------------------------- /brstring/README: -------------------------------------------------------------------------------- 1 | Aqui vai o README -------------------------------------------------------------------------------- /brstring/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brstring/Rakefile -------------------------------------------------------------------------------- /brstring/lib/brstring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brstring/lib/brstring.rb -------------------------------------------------------------------------------- /brstring/lib/brstring/string_portuguese.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brstring/lib/brstring/string_portuguese.rb -------------------------------------------------------------------------------- /brstring/lib/brstring/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brstring/lib/brstring/version.rb -------------------------------------------------------------------------------- /brstring/rails/init.rb: -------------------------------------------------------------------------------- 1 | require File.dirname(__FILE__) + '/../lib/brstring' 2 | -------------------------------------------------------------------------------- /brstring/test/string_portuguese_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brstring/test/string_portuguese_test.rb -------------------------------------------------------------------------------- /brstring/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/brstring/test/test_helper.rb -------------------------------------------------------------------------------- /gemfiles/on_rails_23x.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/gemfiles/on_rails_23x.gemfile -------------------------------------------------------------------------------- /gemfiles/on_rails_30x.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/gemfiles/on_rails_30x.gemfile -------------------------------------------------------------------------------- /gemfiles/on_rails_31x.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/gemfiles/on_rails_31x.gemfile -------------------------------------------------------------------------------- /gemfiles/on_rails_32x.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/gemfiles/on_rails_32x.gemfile -------------------------------------------------------------------------------- /init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/init.rb -------------------------------------------------------------------------------- /lib/brazilian-rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/lib/brazilian-rails.rb -------------------------------------------------------------------------------- /lib/inflector_portuguese.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapajos/brazilian-rails/HEAD/lib/inflector_portuguese.rb --------------------------------------------------------------------------------