-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.rb
41 lines (36 loc) · 938 Bytes
/
demo.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
require 'rubygems'
require 'lib/parseitc'
include ParseITC
begin
report = Parser.new('demo1.txt')
report.add_file('demo2.txt')
puts '=' * 20
puts "Sales in top 10 countries"
report.count_by_country.sort_by{|k,v| v}.reverse[0..9].each do |k, v|
puts " #{k}: #{v}"
end
puts
puts '=' * 20
puts "Sales volume per day"
report.count_by_date.sort.each do |k, v|
puts " #{k}: #{v}"
end
puts
puts '=' * 20
puts "Sales by price and date"
total = 0
report.split_by_date.sort.each do |k1, v1|
puts " #{k1}"
v1.count_by_price_tier.sort.each do |k2, v2|
dollars = ApplePricing[:usd][k2]
puts " $ #{dollars.to_f}: #{v2}"
total += dollars.to_f * v2
end
end
puts "Revenue: $#{total/7*10} "
puts "Profit: $#{total} "
rescue Errno::ENOENT
puts "The data file you specified was not found"
rescue Errno::EACCES
puts "The data file you specified is not readable"
end