rack_prof 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +8 -0
  3. data/lib/rack_prof/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ee20fd9c916fa05afc3ae08d73a5529a218c85ae
4
- data.tar.gz: 3e91d9dcf5db6dd2702087197d668c612287ca24
3
+ metadata.gz: 74e8f59eed5a57263ae6967cd2c746db971e8afa
4
+ data.tar.gz: e2a02bc5a66666403d975ac00cfb1b386e4ce1a8
5
5
  SHA512:
6
- metadata.gz: 7d5e52dc8447324b2164185a0aa45ff348c74da8659057553b0149bbc536052642cb51c9c74921c227cdf52d323745e7575482c1be66dd0e8683ac9ae622c5f2
7
- data.tar.gz: 2bc33e4d2b811f13bee3ad6015c617d4a607e394bab54459d277e69861817ed8161480f8938528688de88dc63557d939df1b7436fb1eb7abbc2bc8c6e7b1b0e9
6
+ metadata.gz: 4bc54af3c09cf7871f9bd53d53e1a50b0a4fde3b67c33f10e17f5e0c590d53f5efb61f5d14ae091535f9c125e9a7340d109d8e89719ace62e63a6bbbf6399eb4
7
+ data.tar.gz: 492a16e48cd2f4231da79ef2bf42abb60941d1d19658533030c0f2411ac51b45283bd18e394fb58ad870ef5f08d8b64cff34c0036c8e404adcd432469bffa762
data/README.md CHANGED
@@ -28,6 +28,14 @@ You might need below to avoid 'stack level too deep' error:
28
28
  :trace_instruction => false
29
29
  }
30
30
 
31
+ Access to your application with a parameter 'profile=true' like:
32
+
33
+ [http://localhost:3000/books?profile=true](http://localhost:3000/books?profile=true)
34
+
35
+ You can specify printer like:
36
+
37
+ [http://localhost:3000/books?profile=true&printer=flat](http://localhost:3000/books?profile=true&printer=flat)
38
+
31
39
  ## Contributing
32
40
 
33
41
  1. Fork it
@@ -1,3 +1,3 @@
1
1
  class RackProf
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rack_prof
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kazuyuki Kohno