mirror of
https://github.com/hakanensari/frankfurter.git
synced 2024-10-29 23:32:35 +01:00
cfbb4ac4ac
I'm moving my company's server to a private location now that I have sold the domain. While prepping for this, I've done some cleanup and also threw in changes I had lingering on my hard drive. - Run a single database query instead of two - Fold the gem into the app and use Ox instead of REXML - Simplify error handling logic - Relax throttling
16 lines
280 B
Ruby
16 lines
280 B
Ruby
# frozen_string_literal: true
|
|
|
|
namespace :rates do
|
|
desc 'Reload all rates'
|
|
task reload: :environment do
|
|
require 'bank'
|
|
Bank.fetch_all_rates!
|
|
end
|
|
|
|
desc 'Update current rates'
|
|
task update: :environment do
|
|
require 'bank'
|
|
Bank.fetch_current_rates!
|
|
end
|
|
end
|