Coder Social home page Coder Social logo

marius / tripwire_notifier Goto Github PK

View Code? Open in Web Editor NEW

This project forked from terriblelabs/guardrail_notifier

1.0 3.0 0.0 185 KB

Tripwire captures validation errors from your Ruby on Rails application to help you identify and fix user experience issues. The TripwireNotifier gem makes it easy to hook up your Rails 2.3 or Rails 3 app to the Tripwire web service.

Home Page: http://tripwireapp.com

License: MIT License

Ruby 100.00%

tripwire_notifier's Introduction

TripwireNotifier

Stop hurting your users!

Tripwire captures validation errors from your Ruby on Rails application to help you identify and fix user experience issues. The TripwireNotifier gem makes it easy to hook up your app to the Tripwire web service.

If you haven’t already signed up for a Tripwire account, visit tripwireapp.com.

Installation

Rails 3

  • Add the following line to Gemfile:

    gem 'tripwire_notifier'
    
  • Install the gem:

    bundle install
    

Rails 2.3

  • Add the following line to config/environment.rb:

    config.gem 'tripwire_notifier'
    
  • Install the gem:

    [sudo] rake gems:install GEM=tripwire_notifier

Configuration

In your Rails app, create config/initializers/tripwire_notifier.rb and add the following line with the API key for your Tripwire project:

TripwireNotifier.configure do |config|
  config.api_key = "<YOUR API KEY>"
end

Validation errors will now be submitted to the Tripwire service on your create and update actions in production mode.

Advanced Usage

Tracking custom actions

TripwireNotifier assumes your app is RESTful, so it only monitors the create and update actions by default. If you’re creating or updating records in non-RESTful actions, you can use an after_filter to make sure any validation failures in those actions are caught as well:

after_filter :log_validation_failures_to_tripwire, :only => [:create, :update, :my_custom_action]

Running in other environments

TripwireNotifier is only enabled in the production environment by default. If you want to enable it in additional environments, such as staging, you’ll need to add the following line to your Tripwire initializer:

config.monitored_environments << ‘staging’

SSL

TripwireNotifier does not use SSL by default, but you can enable it easily:

config.secure = true

Filtering params

TripwireNotifier records the parameters submitted in actions that cause validation errors. Because your app may handle sensitive data, like passwords, credit card numbers, and nuclear launch codes, TripwireNotifier respects the built-in Rails parameter filtering that you enable with filter_parameter_logging in your ApplicationController. For example:

# Scrub sensitive parameters from your log
filter_parameter_logging :password, :secret

Per Rails convention, those params will show up as “[FILTERED]” in the data submitted to Tripwire.

Contact information

Note on Patches/Pull Requests

  • Fork the project.

  • Make your feature addition or bug fix.

  • Add tests for it. This is important so I don’t break it in a future version unintentionally.

  • Commit, do not mess with Rakefile, version, or history. (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)

  • Send me a pull request. Bonus points for topic branches.

Copyright © 2010 Jeffrey Chupp and Jeremy Weiskotten. See LICENSE for details.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.