An open API service indexing awesome lists of open source software.

https://github.com/mrkamel/tab_log

Tab delimited logs with Active Record alike interface
https://github.com/mrkamel/tab_log

Last synced: about 1 year ago
JSON representation

Tab delimited logs with Active Record alike interface

Awesome Lists containing this project

README

          

# TabLog

Write tab delimited logs with an ActiveRecord alike interface


class Download
def fields
[:timestamp, :user_id]
end
end

...

Download.new(:timestamp => Time.now, :user_id => current_user.id)