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

spinny_rb

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

spinny_rb

  • 0.1.1
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Spinny

a lightweight, unopinionated ruby application pre-loader

Description

Spinny is influenced by projects like Spring and Spin and tries to make your workflow more efficient. It differs from those projects in the sense that it is designed to be lighter and does not try to create special cases for certain technologies like Rails or particular test runners. Small, light, and modular is the name of the game.

Installation

gem install spinny_rb

How It Works

Spinny works using a client-server model. The server will pre-load some code that you give it and then start listening on a TCP port. When it receives a connection it will fork off new process and run the code passed in the TCP message.

Usage

First, you'll need to start your server. In this example, we spin up a Spinny::Server using the spinny-serve executable.

# Add the 'test' directory to the $LOAD_PATH and pre-load 'test_helper'
spinny-serve -Itest test_helper

# Pre-loading your typical Rails app
spinny-serve config/environment

Now we need a client to push code to our running server. Spinny comes with several clients out of the box:

  • Spinny::InteractiveClient is a REPL that will push arbitrary code to the server
  • Spinny::LoadClient takes a bunch of files and pushes them to the server to be loaded (e.g. running tests)
  • Spinny::ListenClient is inspired by Guard. It takes a bunch of filepaths and listens for OS file change events and then loads the changed files on the server

All of these can be used by loading the respective client into an IRB shell. Spinny also provides some executables to make it easier to work with common use cases.

spinny-push

spinny-push will read a list of filenames from ARGV or STDIN and use Spinny::LoadClient to push them to the server:

# Read from ARGV
spinny-push file_one.rb file_two.rb

# Read from STDIN
ls test/*_test.rb | spinny-push

spinny-listen

spinny-listen will read a list of directories from ARGV or STDIN and use Spinny::ListenClient to watch for file changes and then will push them to the server via Spinny::LoadClient

spinny-listen test

spinny-guard

spinny-guard gives you guard-like functionality. This spins up Spinny::ListenClient and a Spinny::Server for you in one convenient command

spinny-guard

spinny-stop

Finally, there is spinny-stop for killing all of your Spinny processes:

spinny-stop

TODO

  • Add regexp for spinny-listen
  • Add spinny-reload for reloading the server
  • Add spinny-reload for listening and reloading the server when certain things happen

FAQs

Package last updated on 16 Jan 2016

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