├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── banco_central.gemspec ├── bin ├── console └── setup ├── config └── labels.yml ├── lib ├── banco_central.rb └── banco_central │ └── version.rb └── test ├── banco_central_test.rb ├── response_hashes.rb └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgtesta/banco_central/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgtesta/banco_central/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgtesta/banco_central/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgtesta/banco_central/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgtesta/banco_central/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgtesta/banco_central/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgtesta/banco_central/HEAD/Rakefile -------------------------------------------------------------------------------- /banco_central.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgtesta/banco_central/HEAD/banco_central.gemspec -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgtesta/banco_central/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgtesta/banco_central/HEAD/bin/setup -------------------------------------------------------------------------------- /config/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgtesta/banco_central/HEAD/config/labels.yml -------------------------------------------------------------------------------- /lib/banco_central.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgtesta/banco_central/HEAD/lib/banco_central.rb -------------------------------------------------------------------------------- /lib/banco_central/version.rb: -------------------------------------------------------------------------------- 1 | module BancoCentral 2 | VERSION = "1.0.0" 3 | end 4 | -------------------------------------------------------------------------------- /test/banco_central_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgtesta/banco_central/HEAD/test/banco_central_test.rb -------------------------------------------------------------------------------- /test/response_hashes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgtesta/banco_central/HEAD/test/response_hashes.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgtesta/banco_central/HEAD/test/test_helper.rb --------------------------------------------------------------------------------