mirror of
https://github.com/hakanensari/frankfurter.git
synced 2024-11-24 20:15:15 +01:00
Set base currency
This commit is contained in:
parent
9c4da44db4
commit
6fb6ab7feb
16
lib/app.rb
16
lib/app.rb
@ -2,14 +2,24 @@ require_relative 'snapshot'
|
||||
require 'sinatra'
|
||||
require 'sinatra/jsonp'
|
||||
|
||||
helpers do
|
||||
def base
|
||||
params[:base] || 'EUR'
|
||||
end
|
||||
end
|
||||
|
||||
get '/' do
|
||||
File.read File.join 'public', 'index.html'
|
||||
end
|
||||
|
||||
get '/latest' do
|
||||
jsonp Snapshot.last
|
||||
jsonp Snapshot
|
||||
.last
|
||||
.to_base base
|
||||
end
|
||||
|
||||
get '/:date' do
|
||||
jsonp Snapshot.new params[:date]
|
||||
get '/:date' do |date|
|
||||
jsonp Snapshot
|
||||
.new(date)
|
||||
.to_base base
|
||||
end
|
||||
|
@ -10,10 +10,12 @@ class Snapshot
|
||||
@date = date
|
||||
end
|
||||
|
||||
def to_json
|
||||
Yajl::Encoder.new.encode base: 'EUR',
|
||||
date: @date,
|
||||
rates: rates
|
||||
def to_base(base)
|
||||
{
|
||||
base: base,
|
||||
date: @date,
|
||||
rates: rates
|
||||
}
|
||||
end
|
||||
|
||||
private
|
||||
|
@ -14,7 +14,6 @@ describe 'the application' do
|
||||
end
|
||||
|
||||
it 'sets base currency' do
|
||||
skip 'pending'
|
||||
get '/latest?base=USD'
|
||||
json['base'].must_equal 'USD'
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user