rack-debug 1.3.0 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.rdoc +10 -6
- data/VERSION +1 -1
- data/rack-debug.gemspec +1 -1
- metadata +1 -1
data/README.rdoc
CHANGED
@@ -1,15 +1,19 @@
|
|
1
|
-
|
1
|
+
Install
|
2
2
|
|
3
|
-
|
4
|
-
|
3
|
+
$ gem install rack-debug
|
4
|
+
|
5
|
+
Rails
|
5
6
|
|
6
7
|
# config/environments/development.rb
|
7
|
-
config.
|
8
|
+
config.gem 'rack-debug'
|
9
|
+
config.middleware.use 'Rack::Debug'
|
10
|
+
|
11
|
+
# RAILS_ROOT/Rakefile
|
12
|
+
require 'rack-debug/tasks'
|
8
13
|
|
9
|
-
|
14
|
+
Middleware
|
10
15
|
|
11
16
|
# install
|
12
|
-
$ gem source add http://gems.github.com
|
13
17
|
$ gem install ddollar-rack-debug
|
14
18
|
|
15
19
|
# add a use line to your builder
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.3.
|
1
|
+
1.3.1
|
data/rack-debug.gemspec
CHANGED