Sha256: d937b1dda3eef63c151d77a54f5164d5950009a17fcb22734e3826d2f716a0ed

Contents?: true

Size: 519 Bytes

Versions: 2

Compression:

Stored size: 519 Bytes

Contents

## FileQueue 
...is a simple file based queue written in Ruby that uses the Ruby `File` class in standard library to push and pop items into a queue.

Originally written by [daddz](http://www.github.com/daddz) and found in [this gist](https://gist.github.com/352509). Thanks, daddz!

## Install

    gem install filequeue

## Usage

    queue = FileQueue.new 'queue_party.txt'
    
    queue.push "an item"
      => true
      
    queue.pop
      => "an item"
      
See `spec/filequeue_spec.rb` for more usage details

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
filequeue-0.0.2 README.md
filequeue-0.0.1 README.md