mirror of
https://github.com/hakanensari/frankfurter.git
synced 2024-11-22 11:02:30 +01:00
21 lines
393 B
Ruby
21 lines
393 B
Ruby
namespace :rates do
|
|
task setup: :environment do
|
|
require 'currency'
|
|
require 'fixer'
|
|
end
|
|
|
|
desc 'Load all rates'
|
|
task load: :setup do
|
|
Currency.dataset.delete
|
|
data = Fixer::Feed.new(:historical)
|
|
Currency.multi_insert(data.to_a)
|
|
end
|
|
|
|
desc 'Update rates'
|
|
task update: :setup do
|
|
Fixer::Feed.new.each do |hsh|
|
|
Currency.find_or_create(hsh)
|
|
end
|
|
end
|
|
end
|