├── .gemtest ├── .github └── workflows │ └── ruby.yml ├── .gitignore ├── AUTHORS ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── google_currency.gemspec ├── lib └── money │ ├── bank │ └── google_currency.rb │ └── rates_store │ └── rate_removal_support.rb └── spec ├── google_currency_with_json_spec.rb ├── rates ├── captcha.html ├── error.html ├── sgd_to_usd.html └── vnd_to_usd.html └── spec_helper.rb /.gemtest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/workflows/ruby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubyMoney/google_currency/HEAD/.github/workflows/ruby.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubyMoney/google_currency/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubyMoney/google_currency/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubyMoney/google_currency/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubyMoney/google_currency/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubyMoney/google_currency/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubyMoney/google_currency/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubyMoney/google_currency/HEAD/Rakefile -------------------------------------------------------------------------------- /google_currency.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubyMoney/google_currency/HEAD/google_currency.gemspec -------------------------------------------------------------------------------- /lib/money/bank/google_currency.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubyMoney/google_currency/HEAD/lib/money/bank/google_currency.rb -------------------------------------------------------------------------------- /lib/money/rates_store/rate_removal_support.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubyMoney/google_currency/HEAD/lib/money/rates_store/rate_removal_support.rb -------------------------------------------------------------------------------- /spec/google_currency_with_json_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubyMoney/google_currency/HEAD/spec/google_currency_with_json_spec.rb -------------------------------------------------------------------------------- /spec/rates/captcha.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubyMoney/google_currency/HEAD/spec/rates/captcha.html -------------------------------------------------------------------------------- /spec/rates/error.html: -------------------------------------------------------------------------------- 1 | Something went wrong. 2 | -------------------------------------------------------------------------------- /spec/rates/sgd_to_usd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubyMoney/google_currency/HEAD/spec/rates/sgd_to_usd.html -------------------------------------------------------------------------------- /spec/rates/vnd_to_usd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubyMoney/google_currency/HEAD/spec/rates/vnd_to_usd.html -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubyMoney/google_currency/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------