rack-insight 0.5.29 → 0.5.30

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a87d946c8f511bf3fc65fe32d7bed04f34a74fad
4
- data.tar.gz: 6dce00ffabda1eadd05f74d75e8087125f5e7993
3
+ metadata.gz: 351bb41ae69905d1b03169864a4b0459220af8df
4
+ data.tar.gz: ae9f529678066604e1d3cc2a62a72dd7167b8655
5
5
  SHA512:
6
- metadata.gz: 2353b459336b7964aea09b991d84e53d48383ff5770cfdee49e630426d64d77522c1e17652209d788d9d509259baf500f31b438126b7292cb69edd2357542d24
7
- data.tar.gz: 82bfad2e59f9845ab372da3b88d6af5d42c41e5c3ebbbcd6feb45c44938693c13f78bc4ba9268ee607749e10cc8a56dc7cc0ac58aa6800b715e4c6341c8439a1
6
+ metadata.gz: e06a61b347b4f0ec8c90d51ef67e078c4b5a445a28619c1abfa5e61df99a2c061529be0acb3d3a3a881cbd5d1d0263fec3e4050295dd6091f88cc8666d4be38a
7
+ data.tar.gz: 5f1634ef97c2838a9e63910e264af6cfe1e29fa96b67d6f5fb04a02e591d3e7a95781e8b2df974eea0c47698a51fc9b988fefd1458eecf0777988ebbc75720b2
data/CHANGELOG CHANGED
@@ -1,3 +1,32 @@
1
+ == 0.5.30 / 2015-01-07
2
+
3
+ * Bug Fixes
4
+
5
+ * Removed dependence on rails by @javierhonduco
6
+
7
+ * Other
8
+
9
+ * Added working example: https://github.com/pboling/x-cascade_header_rails/tree/rails3
10
+
11
+
12
+ == 0.5.29 / 2014-11-06
13
+
14
+ * Bug Fixes
15
+
16
+ * Fixed bug with asset pipeline by @hck https://github.com/pboling/rack-insight/pull/28
17
+
18
+ * Various bug fixes from @bibendi, @Napolskih, @abak-press, @semenyukdmitriy,
19
+
20
+ * Fixed travis build by @michaelmior
21
+
22
+ * Fixed serving of the toolbar by Peter Boling
23
+
24
+ * All specs passing by Peter Boling
25
+
26
+ * Other
27
+
28
+ * Improved Readme by Peter Boling
29
+
1
30
  == 0.5.28 / 2014-01-14
2
31
 
3
32
  * Bug Fixes
data/README.md CHANGED
@@ -30,6 +30,7 @@ stores debugging info over many requests, incuding AJAX requests.
30
30
  | documentation | [http://rdoc.info/github/pboling/rack-insight/frames][documentation] |
31
31
  | author | [Peter Boling](https://coderbits.com/pboling) |
32
32
  | Spread ~♡ⓛⓞⓥⓔ♡~ | [![Endorse Me](https://api.coderwall.com/pboling/endorsecount.png)](http://coderwall.com/pboling) |
33
+ | Working Example | [On Rails 3.2.20](https://github.com/pboling/x-cascade_header_rails/tree/rails3) |
33
34
 
34
35
  Features
35
36
  --------
@@ -13,7 +13,7 @@ module Rack::Insight
13
13
  @env = env
14
14
  status, headers, body = @app.call(@env)
15
15
 
16
- if body.present?
16
+ if !body.nil? && !body.empty?
17
17
  response = Rack::Response.new(body, status, headers)
18
18
  inject_button(response) if okay_to_modify?(env, response)
19
19
 
@@ -1,7 +1,7 @@
1
1
  module Rack
2
2
  module Insight
3
3
 
4
- VERSION = '0.5.29'
4
+ VERSION = '0.5.30'
5
5
 
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rack-insight
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.29
4
+ version: 0.5.30
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Boling
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2014-11-06 00:00:00.000000000 Z
14
+ date: 2015-01-07 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: rack