Created
October 23, 2013 20:18
-
-
Save jbuda/7125948 to your computer and use it in GitHub Desktop.
Ruby - Day 3 - Seven Languages in Seven Weeks
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
module ActsAsCsv | |
class CsvRow | |
attr_accessor :header, :content | |
def initialize header,content | |
@header = header | |
@content = content | |
end | |
def method_missing name, *args | |
@content[@header.find_index(name.to_s)] | |
end | |
end | |
def self.included(base) | |
base.extend ClassMethods | |
end | |
module ClassMethods | |
def acts_as_csv | |
include InstanceMethods | |
end | |
end | |
module InstanceMethods | |
def read | |
@csv_contents = [] | |
filename = self.class.to_s.downcase+'.txt' | |
file = File.new(filename) | |
@headers = file.gets.chomp.split(',') | |
file.each do |row| | |
@csv_contents << CsvRow.new(@headers,row.chomp.split(',')) | |
end | |
end | |
def each | |
@csv_contents.each do |row| | |
yield row | |
end | |
end | |
attr_accessor :headers, :csv_contents | |
def initialize | |
read | |
end | |
end | |
end | |
class RubyCsv | |
include ActsAsCsv | |
acts_as_csv | |
end | |
m = RubyCsv.new | |
puts m.headers.inspect | |
puts m.csv_contents.inspect | |
m.each { |row| puts "#{row.name} is #{row.age} years old" } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment