log_scroll

Rolling Logs in Ruby


License
MIT
Install
gem install log_scroll -v 0.1.1

Documentation

LogScroll

Gem Version Build Status Test Coverage Code Climate Dependency Status Inline docs

**WARNING THIS GEM IS PRE 1.0 AND STILL UNSTABLE**

A simple gem for creating a rolling log files

Installation

Add this line to your application's Gemfile:

gem 'log_scroll'

And then execute:

$ bundle

Or install it yourself as:

$ gem install log_scroll

Usage

Proposed API:

scroll = LogScroll.new(max_size: 10, file_name: "history.log")
scroll.log("first log entry")
scroll.log("second log entry")

scroll.entries
# => ["first log entry\n", "second log entry\n"]

puts "Oldest Entry: " + scroll.oldest_entry
# => "Oldest Entry: first log entry"

puts "Newest Entry: " + scroll.newest_entry
# => "Newest Entry: second log entry"

Contributing

  1. Fork it ( https://github.com/[my-github-username]/log_scroll/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request