adelcambre / artifice

Replaces Net::HTTP with a subclass that routes all requests to a Rack application

Home Page:http://www.yehudakatz.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Artifice allows you to replace the Net::HTTP subsystem of Ruby
with an equivalent that routes all requests to a Rack application.

You can use Sinatra, raw Rack, or even Rails as your application,
allowing you to build up an equivalent to the remote service you
are mocking out using familiar and convenient tools to route
requests and build up responses.

Usage

First, require artifice.

require "artifice"

Next, activate artifice using a Rack endpoint.

Artifice.activate_with(rack_endpoint)

You’re done!

You can also pass a block to activate_with:

Artifice.activate_with(rack_endpoint) do
  # make some requests using Net::HTTP
end

This will replace Net::HTTP for the duration of the block only.

You can deactivate Artifice by calling deactivate

Artifice.deactivate

About

Replaces Net::HTTP with a subclass that routes all requests to a Rack application

http://www.yehudakatz.com

License:MIT License