Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

filequeue

Package Overview
Dependencies
Maintainers
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

filequeue

  • 1.0.3
  • Rubygems
  • Socket score

Version published
Maintainers
3
Created
Source

FileQueue Build Status

...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. It's not web scale but is nice for lightweight async queuing apps.

Originally written by daddz and found in this gist. 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

Continuous Integration

Build Status

FAQs

Package last updated on 31 Jul 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc