rack-debug 1.4.2 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +7 -5
- data/lib/rack-debug.rb +1 -0
- data/lib/rack/debug/version.rb +6 -0
- metadata +48 -35
- data/.gitignore +0 -2
- data/Rakefile +0 -50
- data/VERSION +0 -1
- data/rack-debug.gemspec +0 -55
data/README.rdoc
CHANGED
@@ -1,11 +1,13 @@
|
|
1
|
+
NOTE: If you're using Ruby 1.8.x please use the 1.x series of rack-debug
|
2
|
+
|
1
3
|
Install
|
2
4
|
|
3
|
-
$ gem install rack-debug
|
5
|
+
$ gem install rack-debug
|
4
6
|
|
5
7
|
Rails
|
6
8
|
|
7
9
|
# config/environments/development.rb
|
8
|
-
config.gem 'rack-debug'
|
10
|
+
config.gem 'rack-debug'
|
9
11
|
config.middleware.use 'Rack::Debug'
|
10
12
|
|
11
13
|
# RAILS_ROOT/Rakefile
|
@@ -47,10 +49,10 @@ Debugging:
|
|
47
49
|
|
48
50
|
Meta:
|
49
51
|
|
50
|
-
|
52
|
+
Author/Maintainer: David Dollar
|
51
53
|
|
52
|
-
|
53
|
-
|
54
|
+
Patches contributed by:
|
55
|
+
Bart Teeuwisse
|
54
56
|
|
55
57
|
Thanks to:
|
56
58
|
|
data/lib/rack-debug.rb
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
require 'rack/debug'
|
metadata
CHANGED
@@ -1,7 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rack-debug
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 2
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
version: 2.0.0
|
5
10
|
platform: ruby
|
6
11
|
authors:
|
7
12
|
- David Dollar
|
@@ -9,78 +14,86 @@ autorequire:
|
|
9
14
|
bindir: bin
|
10
15
|
cert_chain: []
|
11
16
|
|
12
|
-
date: 2010-
|
17
|
+
date: 2010-12-16 00:00:00 -05:00
|
13
18
|
default_executable:
|
14
19
|
dependencies:
|
15
20
|
- !ruby/object:Gem::Dependency
|
16
21
|
name: rack
|
17
|
-
|
18
|
-
|
19
|
-
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
none: false
|
20
25
|
requirements:
|
21
26
|
- - ">="
|
22
27
|
- !ruby/object:Gem::Version
|
28
|
+
segments:
|
29
|
+
- 1
|
30
|
+
- 0
|
23
31
|
version: "1.0"
|
24
|
-
version:
|
25
|
-
- !ruby/object:Gem::Dependency
|
26
|
-
name: ruby-debug
|
27
32
|
type: :runtime
|
28
|
-
|
29
|
-
|
33
|
+
version_requirements: *id001
|
34
|
+
- !ruby/object:Gem::Dependency
|
35
|
+
name: ruby-debug19
|
36
|
+
prerelease: false
|
37
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
38
|
+
none: false
|
30
39
|
requirements:
|
31
|
-
- -
|
40
|
+
- - ~>
|
32
41
|
- !ruby/object:Gem::Version
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
42
|
+
segments:
|
43
|
+
- 0
|
44
|
+
- 11
|
45
|
+
- 6
|
46
|
+
version: 0.11.6
|
47
|
+
type: :runtime
|
48
|
+
version_requirements: *id002
|
49
|
+
description: Rack::Debug is a middleware that provides a simple interface to ruby-debug. Helps debug apps running in Passenger.
|
50
|
+
email: ddollar@gmail.com
|
41
51
|
executables: []
|
42
52
|
|
43
53
|
extensions: []
|
44
54
|
|
45
|
-
extra_rdoc_files:
|
46
|
-
|
55
|
+
extra_rdoc_files: []
|
56
|
+
|
47
57
|
files:
|
48
|
-
- .
|
49
|
-
-
|
50
|
-
- Rakefile
|
51
|
-
- VERSION
|
52
|
-
- lib/rack-debug.rb
|
58
|
+
- lib/rack/debug/version.rb
|
59
|
+
- lib/rack/debug.rb
|
53
60
|
- lib/rack-debug/debugger.rb
|
54
61
|
- lib/rack-debug/tasks.rb
|
55
|
-
- lib/rack
|
56
|
-
-
|
62
|
+
- lib/rack-debug.rb
|
63
|
+
- README.rdoc
|
57
64
|
has_rdoc: true
|
58
65
|
homepage: http://github.com/ddollar/rack-debug
|
59
66
|
licenses: []
|
60
67
|
|
61
68
|
post_install_message:
|
62
|
-
rdoc_options:
|
63
|
-
|
69
|
+
rdoc_options: []
|
70
|
+
|
64
71
|
require_paths:
|
65
72
|
- lib
|
66
73
|
required_ruby_version: !ruby/object:Gem::Requirement
|
74
|
+
none: false
|
67
75
|
requirements:
|
68
76
|
- - ">="
|
69
77
|
- !ruby/object:Gem::Version
|
70
|
-
|
71
|
-
|
78
|
+
segments:
|
79
|
+
- 1
|
80
|
+
- 9
|
81
|
+
- 2
|
82
|
+
version: 1.9.2
|
72
83
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
84
|
+
none: false
|
73
85
|
requirements:
|
74
86
|
- - ">="
|
75
87
|
- !ruby/object:Gem::Version
|
88
|
+
segments:
|
89
|
+
- 0
|
76
90
|
version: "0"
|
77
|
-
version:
|
78
91
|
requirements: []
|
79
92
|
|
80
93
|
rubyforge_project:
|
81
|
-
rubygems_version: 1.3.
|
94
|
+
rubygems_version: 1.3.7
|
82
95
|
signing_key:
|
83
96
|
specification_version: 3
|
84
|
-
summary: Rack
|
97
|
+
summary: A Rack-middleware interface to ruby-debug
|
85
98
|
test_files: []
|
86
99
|
|
data/.gitignore
DELETED
data/Rakefile
DELETED
@@ -1,50 +0,0 @@
|
|
1
|
-
require 'rubygems'
|
2
|
-
require 'rake'
|
3
|
-
|
4
|
-
begin
|
5
|
-
require 'jeweler'
|
6
|
-
Jeweler::Tasks.new do |gem|
|
7
|
-
gem.name = "rack-debug"
|
8
|
-
gem.summary = %Q{Rack::Debug adds a middleware interface to ruby-debug}
|
9
|
-
gem.description = <<-DESCRIPTION
|
10
|
-
|
11
|
-
Rack::Debug adds a middlerware interface to ruby-debug
|
12
|
-
http://github.com/github/rack-debug
|
13
|
-
|
14
|
-
DESCRIPTION
|
15
|
-
gem.email = "<ddollar@gmail.com>"
|
16
|
-
gem.homepage = "http://github.com/ddollar/rack-debug"
|
17
|
-
gem.authors = ["David Dollar"]
|
18
|
-
|
19
|
-
gem.add_dependency 'rack', '>= 1.0'
|
20
|
-
gem.add_dependency 'ruby-debug', '>= 0.10'
|
21
|
-
end
|
22
|
-
Jeweler::GemcutterTasks.new
|
23
|
-
rescue LoadError
|
24
|
-
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
|
25
|
-
end
|
26
|
-
|
27
|
-
require 'spec/rake/spectask'
|
28
|
-
Spec::Rake::SpecTask.new(:spec) do |spec|
|
29
|
-
spec.libs << 'lib' << 'spec'
|
30
|
-
spec.spec_files = FileList['spec/**/*_spec.rb']
|
31
|
-
end
|
32
|
-
|
33
|
-
Spec::Rake::SpecTask.new(:rcov) do |spec|
|
34
|
-
spec.libs << 'lib' << 'spec'
|
35
|
-
spec.pattern = 'spec/**/*_spec.rb'
|
36
|
-
spec.rcov = true
|
37
|
-
end
|
38
|
-
|
39
|
-
task :spec => :check_dependencies
|
40
|
-
|
41
|
-
task :default => :spec
|
42
|
-
|
43
|
-
begin
|
44
|
-
require 'yard'
|
45
|
-
YARD::Rake::YardocTask.new
|
46
|
-
rescue LoadError
|
47
|
-
task :yardoc do
|
48
|
-
abort "YARD is not available. In order to run yardoc, you must: sudo gem install yard"
|
49
|
-
end
|
50
|
-
end
|
data/VERSION
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
1.4.2
|
data/rack-debug.gemspec
DELETED
@@ -1,55 +0,0 @@
|
|
1
|
-
# Generated by jeweler
|
2
|
-
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
-
# -*- encoding: utf-8 -*-
|
5
|
-
|
6
|
-
Gem::Specification.new do |s|
|
7
|
-
s.name = %q{rack-debug}
|
8
|
-
s.version = "1.4.2"
|
9
|
-
|
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{2010-01-04}
|
13
|
-
s.description = %q{
|
14
|
-
Rack::Debug adds a middlerware interface to ruby-debug
|
15
|
-
http://github.com/github/rack-debug
|
16
|
-
|
17
|
-
}
|
18
|
-
s.email = %q{<ddollar@gmail.com>}
|
19
|
-
s.extra_rdoc_files = [
|
20
|
-
"README.rdoc"
|
21
|
-
]
|
22
|
-
s.files = [
|
23
|
-
".gitignore",
|
24
|
-
"README.rdoc",
|
25
|
-
"Rakefile",
|
26
|
-
"VERSION",
|
27
|
-
"lib/rack-debug.rb",
|
28
|
-
"lib/rack-debug/debugger.rb",
|
29
|
-
"lib/rack-debug/tasks.rb",
|
30
|
-
"lib/rack/debug.rb",
|
31
|
-
"rack-debug.gemspec"
|
32
|
-
]
|
33
|
-
s.homepage = %q{http://github.com/ddollar/rack-debug}
|
34
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
35
|
-
s.require_paths = ["lib"]
|
36
|
-
s.rubygems_version = %q{1.3.5}
|
37
|
-
s.summary = %q{Rack::Debug adds a middleware interface to ruby-debug}
|
38
|
-
|
39
|
-
if s.respond_to? :specification_version then
|
40
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
41
|
-
s.specification_version = 3
|
42
|
-
|
43
|
-
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
44
|
-
s.add_runtime_dependency(%q<rack>, [">= 1.0"])
|
45
|
-
s.add_runtime_dependency(%q<ruby-debug>, [">= 0.10"])
|
46
|
-
else
|
47
|
-
s.add_dependency(%q<rack>, [">= 1.0"])
|
48
|
-
s.add_dependency(%q<ruby-debug>, [">= 0.10"])
|
49
|
-
end
|
50
|
-
else
|
51
|
-
s.add_dependency(%q<rack>, [">= 1.0"])
|
52
|
-
s.add_dependency(%q<ruby-debug>, [">= 0.10"])
|
53
|
-
end
|
54
|
-
end
|
55
|
-
|