README.md in rack-insight-0.5.28 vs README.md in rack-insight-0.5.29
- old
+ new
@@ -21,11 +21,12 @@
| license | MIT |
| moldiness | [![Maintainer Status](http://stillmaintained.com/pboling/rack-insight.png)](http://stillmaintained.com/pboling/rack-insight) |
| version | [![Gem Version](https://badge.fury.io/rb/rack-insight.png)](http://badge.fury.io/rb/rack-insight) |
| dependencies | [![Dependency Status](https://gemnasium.com/pboling/rack-insight.png)](https://gemnasium.com/pboling/rack-insight) |
| code quality | [![Code Climate](https://codeclimate.com/github/pboling/rack-insight.png)](https://codeclimate.com/github/pboling/rack-insight) |
-| continuous integration | [![Build Status](https://secure.travis-ci.org/pboling/rack-insight.png?branch=master)](https://travis-ci.org/pboling/rack-insight) |
+| inline documenation | [![Inline docs](http://inch-ci.org/github/pboling/rack-insight.png)](http://inch-ci.org/github/pboling/rack-insight) |
+| continuous integration | [![Build Status](https://secure.travis-ci.org/pboling/rack-insight.png?branch=master)](https://travis-ci.org/pboling/rack-insight)|
| test coverage | [![Coverage Status](https://coveralls.io/repos/pboling/rack-insight/badge.png)](https://coveralls.io/r/pboling/rack-insight) |
| homepage | [https://github.com/pboling/rack-insight][homepage] |
| documentation | [http://rdoc.info/github/pboling/rack-insight/frames][documentation] |
| author | [Peter Boling](https://coderbits.com/pboling) |
| Spread ~♡ⓛⓞⓥⓔ♡~ | [![Endorse Me](https://api.coderwall.com/pboling/endorsecount.png)](http://coderwall.com/pboling) |
@@ -56,27 +57,20 @@
* Consistent interface to instrument application code
* Consistent timing across panels
* Easy to add sub-applications for more detailed reports (c.f. SQLPanel)
* Ask me (pboling) if you need help with this.
-Build Status
----------------------------
-
-Travis-ci: [![Build Status](https://secure.travis-ci.org/pboling/rack-insight.png?branch=master)](https://travis-ci.org/pboling/rack-insight) - Please help if you have time!
-
-CodeClimate: [![Code Climate](https://codeclimate.com/github/pboling/rack-insight.png)](https://codeclimate.com/github/pboling/rack-insight)
-
Rails quick start
---------------------------
Add this to your Gemfile:
gem "rack-insight"
In config/environments/development.rb, add:
- config.middleware.use "Rack::Insight::App",
- :secret_key => "someverylongandveryhardtoguesspreferablyrandomstring"
+ config.middleware.use 'Rack::Insight::App',
+ :secret_key => 'someverylongandveryhardtoguesspreferablyrandomstring'
Any environment with Rack::Insight loaded will have a link to "Rack::Insight" added to as
the last child of `<body>` to normal responses. Clicking that link will load the
toolbar. It's set with an id of "rack-insight-enabler", so it can be styled
to go somewhere more noticeable. E.g. "position: absolute; top: 0; left: 0"