maiha-merb_inspector 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/README +6 -1
  2. data/Rakefile +1 -1
  3. metadata +1 -1
data/README CHANGED
@@ -10,7 +10,7 @@ Setup
10
10
 
11
11
  1. load gem at the bottom of config/dependencies.rb
12
12
 
13
- dependency "merb_inspector"
13
+ require "merb_inspector"
14
14
 
15
15
  2. include css and js in your view or layout files
16
16
 
@@ -24,10 +24,15 @@ Example
24
24
  just *inspect* the object you want to know!
25
25
 
26
26
  <%= inspect [1, :hello] %>
27
+ <%= inspect ENV.to_hash %>
27
28
  <%= inspect User.all(:limit=>10) %>
28
29
  <%= inspect @item %>
29
30
  ...
30
31
 
32
+ of course you can see available inspectors as following
33
+
34
+ <%= inspect Merb::Inspector::Manager.stores %>
35
+
31
36
 
32
37
  Copyright (c) 2008 maiha@wota.jp, released under the MIT license
33
38
 
data/Rakefile CHANGED
@@ -5,7 +5,7 @@ require 'merb-core'
5
5
  require 'merb-core/tasks/merb'
6
6
 
7
7
  GEM_NAME = "merb_inspector"
8
- GEM_VERSION = "0.2.1"
8
+ GEM_VERSION = "0.2.2"
9
9
  AUTHOR = "Maiha"
10
10
  EMAIL = "maiha@wota.jp"
11
11
  HOMEPAGE = "http://github.com/maiha/merb_inspector"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: maiha-merb_inspector
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Maiha