For use with Nox and Ruby on Rails.
Add to your Gemfile:
gem 'nox', :github => "hooroo/nox-ruby"
Create an initializer:
if Rails.env.development?
require 'nox/net/http'
end
And finally, create a nox.yml
file in your /config
directory that configures how your application will interact with Nox.
shared: &SHARED
ignore:
-
host: "204.93.223.138" # New relic
-
host: "airbrake.io" # Airbrake
-
host: "googleapis.com"
-
host: "maps.googleapis.com"
development:
<<: *SHARED
host: localhost
port: 7654
Clone down the repo, and start hacking. There are no tests.