Created
July 1, 2013 22:05
-
-
Save dhoss/5905043 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
def grouped_impression_data | |
raw_impression_data | |
@impression_data.group_by {|i| i.first}.each {|k,v| | |
v.each {|val| | |
val.shift | |
} | |
v.flatten | |
} | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment