Created
January 15, 2010 10:14
-
-
Save ilake/277945 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
file = File.new("#{RAILS_ROOT}/log/ack_analytic", 'w') | |
file.puts "Ack Analytic" | |
file.print "\n" | |
h.each do |a| | |
file.print "#{a[0]} #{a[1]} " | |
(a[1]/5).times do | |
file.print "=" | |
end | |
file.print "\n" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment