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
- Host: GitHub
- URL: https://github.com/mrkamel/tab_log
- Owner: mrkamel
- Created: 2012-02-16T15:54:25.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2012-02-16T15:58:08.000Z (over 14 years ago)
- Last Synced: 2025-03-29T04:43:58.558Z (over 1 year ago)
- Language: Ruby
- Homepage:
- Size: 85.9 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)