rack-debug 1.4.1 → 1.4.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +9 -2
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/rack-debug.gemspec +6 -5
- metadata +2 -3
data/README.rdoc
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
Install
|
2
2
|
|
3
|
-
$ gem install rack-debug
|
3
|
+
$ gem install rack-debug --source http://gemcutter.org
|
4
4
|
|
5
5
|
Rails
|
6
6
|
|
7
7
|
# config/environments/development.rb
|
8
|
-
config.gem 'rack-debug'
|
8
|
+
config.gem 'rack-debug', :source => 'http://gemcutter.org'
|
9
9
|
config.middleware.use 'Rack::Debug'
|
10
10
|
|
11
11
|
# RAILS_ROOT/Rakefile
|
@@ -45,6 +45,13 @@ Debugging:
|
|
45
45
|
# can specify the socket path
|
46
46
|
SOCKET_PATH=/tmp/rack-debug rake debug
|
47
47
|
|
48
|
+
Meta:
|
49
|
+
|
50
|
+
Author/Maintainer: David Dollar
|
51
|
+
|
52
|
+
Patches contributed by:
|
53
|
+
Bart Teeuwisse
|
54
|
+
|
48
55
|
Thanks to:
|
49
56
|
|
50
57
|
Rack::Bug for a good example of Rack middleware in Rails
|
data/Rakefile
CHANGED
@@ -14,7 +14,7 @@ http://github.com/github/rack-debug
|
|
14
14
|
DESCRIPTION
|
15
15
|
gem.email = "<ddollar@gmail.com>"
|
16
16
|
gem.homepage = "http://github.com/ddollar/rack-debug"
|
17
|
-
gem.authors = ["David Dollar"
|
17
|
+
gem.authors = ["David Dollar"]
|
18
18
|
|
19
19
|
gem.add_dependency 'rack', '>= 1.0'
|
20
20
|
gem.add_dependency 'ruby-debug', '>= 0.10'
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.4.
|
1
|
+
1.4.2
|
data/rack-debug.gemspec
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
# Generated by jeweler
|
2
|
-
# DO NOT EDIT THIS FILE
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{rack-debug}
|
8
|
-
s.version = "1.4.
|
8
|
+
s.version = "1.4.2"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
-
s.authors = ["David Dollar"
|
12
|
-
s.date = %q{
|
11
|
+
s.authors = ["David Dollar"]
|
12
|
+
s.date = %q{2010-01-04}
|
13
13
|
s.description = %q{
|
14
14
|
Rack::Debug adds a middlerware interface to ruby-debug
|
15
15
|
http://github.com/github/rack-debug
|
@@ -52,3 +52,4 @@ http://github.com/github/rack-debug
|
|
52
52
|
s.add_dependency(%q<ruby-debug>, [">= 0.10"])
|
53
53
|
end
|
54
54
|
end
|
55
|
+
|
metadata
CHANGED
@@ -1,16 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rack-debug
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.4.
|
4
|
+
version: 1.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Dollar
|
8
|
-
- Bart Teeuwisse
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
11
|
|
13
|
-
date:
|
12
|
+
date: 2010-01-04 00:00:00 -05:00
|
14
13
|
default_executable:
|
15
14
|
dependencies:
|
16
15
|
- !ruby/object:Gem::Dependency
|