wested-rack-bug 0.2.2.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/.gitignore +3 -0
- data/History.txt +0 -0
- data/MIT-LICENSE.txt +19 -0
- data/README.rdoc +29 -0
- data/Rakefile +20 -0
- data/Thorfile +109 -0
- data/VERSION +1 -0
- data/lib/rack/bug.rb +43 -0
- data/lib/rack/bug/options.rb +89 -0
- data/lib/rack/bug/panel.rb +50 -0
- data/lib/rack/bug/panel_app.rb +33 -0
- data/lib/rack/bug/panels/active_record_panel.rb +45 -0
- data/lib/rack/bug/panels/active_record_panel/activerecord_extensions.rb +18 -0
- data/lib/rack/bug/panels/cache_panel.rb +50 -0
- data/lib/rack/bug/panels/cache_panel/memcache_extension.rb +129 -0
- data/lib/rack/bug/panels/cache_panel/panel_app.rb +48 -0
- data/lib/rack/bug/panels/cache_panel/stats.rb +97 -0
- data/lib/rack/bug/panels/log_panel.rb +39 -0
- data/lib/rack/bug/panels/log_panel/rails_extension.rb +11 -0
- data/lib/rack/bug/panels/memory_panel.rb +27 -0
- data/lib/rack/bug/panels/rails_info_panel.rb +23 -0
- data/lib/rack/bug/panels/redis_panel.rb +44 -0
- data/lib/rack/bug/panels/redis_panel/redis_extension.rb +14 -0
- data/lib/rack/bug/panels/redis_panel/stats.rb +48 -0
- data/lib/rack/bug/panels/request_variables_panel.rb +25 -0
- data/lib/rack/bug/panels/sql_panel.rb +55 -0
- data/lib/rack/bug/panels/sql_panel/panel_app.rb +37 -0
- data/lib/rack/bug/panels/sql_panel/query.rb +73 -0
- data/lib/rack/bug/panels/sql_panel/sql_extension.rb +11 -0
- data/lib/rack/bug/panels/templates_panel.rb +44 -0
- data/lib/rack/bug/panels/templates_panel/actionview_extension.rb +12 -0
- data/lib/rack/bug/panels/templates_panel/rendering.rb +67 -0
- data/lib/rack/bug/panels/templates_panel/trace.rb +34 -0
- data/lib/rack/bug/panels/timer_panel.rb +40 -0
- data/lib/rack/bug/params_signature.rb +65 -0
- data/lib/rack/bug/public/__rack_bug__/bookmarklet.html +10 -0
- data/lib/rack/bug/public/__rack_bug__/bookmarklet.js +215 -0
- data/lib/rack/bug/public/__rack_bug__/bug.css +211 -0
- data/lib/rack/bug/public/__rack_bug__/bug.js +84 -0
- data/lib/rack/bug/public/__rack_bug__/jquery-1.3.2.js +4376 -0
- data/lib/rack/bug/public/__rack_bug__/jquery.tablesorter.min.js +1 -0
- data/lib/rack/bug/public/__rack_bug__/spinner.gif +0 -0
- data/lib/rack/bug/render.rb +66 -0
- data/lib/rack/bug/toolbar.rb +137 -0
- data/lib/rack/bug/views/error.html.erb +16 -0
- data/lib/rack/bug/views/panels/active_record.html.erb +17 -0
- data/lib/rack/bug/views/panels/cache.html.erb +93 -0
- data/lib/rack/bug/views/panels/execute_sql.html.erb +32 -0
- data/lib/rack/bug/views/panels/explain_sql.html.erb +32 -0
- data/lib/rack/bug/views/panels/log.html.erb +23 -0
- data/lib/rack/bug/views/panels/profile_sql.html.erb +32 -0
- data/lib/rack/bug/views/panels/rails_info.html.erb +19 -0
- data/lib/rack/bug/views/panels/redis.html.erb +32 -0
- data/lib/rack/bug/views/panels/request_variables.html.erb +107 -0
- data/lib/rack/bug/views/panels/sql.html.erb +43 -0
- data/lib/rack/bug/views/panels/templates.html.erb +7 -0
- data/lib/rack/bug/views/panels/timer.html.erb +19 -0
- data/lib/rack/bug/views/panels/view_cache.html.erb +19 -0
- data/lib/rack/bug/views/redirect.html.erb +16 -0
- data/lib/rack/bug/views/toolbar.html.erb +42 -0
- data/spec/fixtures/config.ru +8 -0
- data/spec/fixtures/dummy_panel.rb +2 -0
- data/spec/fixtures/sample_app.rb +29 -0
- data/spec/rack/bug/panels/active_record_panel_spec.rb +30 -0
- data/spec/rack/bug/panels/cache_panel_spec.rb +159 -0
- data/spec/rack/bug/panels/log_panel_spec.rb +25 -0
- data/spec/rack/bug/panels/memory_panel_spec.rb +21 -0
- data/spec/rack/bug/panels/rails_info_panel_spec.rb +25 -0
- data/spec/rack/bug/panels/redis_panel_spec.rb +57 -0
- data/spec/rack/bug/panels/sql_panel_spec.rb +136 -0
- data/spec/rack/bug/panels/templates_panel_spec.rb +71 -0
- data/spec/rack/bug/panels/timer_panel_spec.rb +38 -0
- data/spec/rack/toolbar_spec.rb +100 -0
- data/spec/rcov.opts +1 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +70 -0
- data/wested-rack-bug.gemspec +127 -0
- metadata +153 -0
    
        data/spec/rcov.opts
    ADDED
    
    | @@ -0,0 +1 @@ | |
| 1 | 
            +
            -x gems,spec\/
         | 
    
        data/spec/spec.opts
    ADDED
    
    | @@ -0,0 +1 @@ | |
| 1 | 
            +
            --color
         | 
    
        data/spec/spec_helper.rb
    ADDED
    
    | @@ -0,0 +1,70 @@ | |
| 1 | 
            +
            require "rubygems"
         | 
| 2 | 
            +
            require "spec"
         | 
| 3 | 
            +
            require "webrat"
         | 
| 4 | 
            +
            require "rack/test"
         | 
| 5 | 
            +
             | 
| 6 | 
            +
            $LOAD_PATH.unshift File.dirname(File.dirname(__FILE__)) + '/lib'
         | 
| 7 | 
            +
            $LOAD_PATH.unshift File.dirname(File.dirname(__FILE__))
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            require "rack/bug"
         | 
| 10 | 
            +
            require "spec/fixtures/sample_app"
         | 
| 11 | 
            +
            require "spec/fixtures/dummy_panel"
         | 
| 12 | 
            +
             | 
| 13 | 
            +
            module Rails
         | 
| 14 | 
            +
              def self.version
         | 
| 15 | 
            +
                ""
         | 
| 16 | 
            +
              end
         | 
| 17 | 
            +
              
         | 
| 18 | 
            +
              class Info
         | 
| 19 | 
            +
                def self.properties
         | 
| 20 | 
            +
                  []
         | 
| 21 | 
            +
                end
         | 
| 22 | 
            +
              end
         | 
| 23 | 
            +
            end
         | 
| 24 | 
            +
             | 
| 25 | 
            +
            module ActiveRecord
         | 
| 26 | 
            +
              class Base
         | 
| 27 | 
            +
              end
         | 
| 28 | 
            +
            end
         | 
| 29 | 
            +
             | 
| 30 | 
            +
            Spec::Runner.configure do |config|
         | 
| 31 | 
            +
              TIME_MS_REGEXP = /\d+\.\d{2}ms/
         | 
| 32 | 
            +
              
         | 
| 33 | 
            +
              config.include Rack::Test::Methods
         | 
| 34 | 
            +
              config.include Webrat::Matchers
         | 
| 35 | 
            +
              
         | 
| 36 | 
            +
              config.before do
         | 
| 37 | 
            +
                # This allows specs to record data outside the request
         | 
| 38 | 
            +
                Rack::Bug.enable
         | 
| 39 | 
            +
                
         | 
| 40 | 
            +
                # Set the cookie that triggers Rack::Bug under normal conditions
         | 
| 41 | 
            +
                header :cookie, "rack_bug_enabled=1"
         | 
| 42 | 
            +
              end
         | 
| 43 | 
            +
              
         | 
| 44 | 
            +
              def app
         | 
| 45 | 
            +
                Rack::Builder.new do
         | 
| 46 | 
            +
                  use Rack::Bug
         | 
| 47 | 
            +
                  run SampleApp.new
         | 
| 48 | 
            +
                end
         | 
| 49 | 
            +
              end
         | 
| 50 | 
            +
              
         | 
| 51 | 
            +
              def have_row(container, key, value = nil)
         | 
| 52 | 
            +
                simple_matcher("contain row") do |response|
         | 
| 53 | 
            +
                  if value
         | 
| 54 | 
            +
                    response.should have_selector("#{container} tr", :content => key) do |row|
         | 
| 55 | 
            +
                      row.should contain(value)
         | 
| 56 | 
            +
                    end
         | 
| 57 | 
            +
                  else
         | 
| 58 | 
            +
                    response.should have_selector("#{container} tr", :content => key)
         | 
| 59 | 
            +
                  end
         | 
| 60 | 
            +
                end
         | 
| 61 | 
            +
              end
         | 
| 62 | 
            +
              
         | 
| 63 | 
            +
              def have_heading(text)
         | 
| 64 | 
            +
                simple_matcher("have heading") do |response|
         | 
| 65 | 
            +
                  response.should have_selector("#rack_bug_toolbar li") do |heading|
         | 
| 66 | 
            +
                    heading.should contain(text)
         | 
| 67 | 
            +
                  end
         | 
| 68 | 
            +
                end
         | 
| 69 | 
            +
              end
         | 
| 70 | 
            +
            end
         | 
| @@ -0,0 +1,127 @@ | |
| 1 | 
            +
            # -*- encoding: utf-8 -*-
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            Gem::Specification.new do |s|
         | 
| 4 | 
            +
              s.name = %q{wested-rack-bug}
         | 
| 5 | 
            +
              s.version = "0.2.2.1"
         | 
| 6 | 
            +
             | 
| 7 | 
            +
              s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
         | 
| 8 | 
            +
              s.authors = ["Bryan Helmkamp"]
         | 
| 9 | 
            +
              s.date = %q{2009-10-27}
         | 
| 10 | 
            +
              s.email = %q{bryan@brynary.com}
         | 
| 11 | 
            +
              s.extra_rdoc_files = [
         | 
| 12 | 
            +
                "README.rdoc",
         | 
| 13 | 
            +
                "MIT-LICENSE.txt"
         | 
| 14 | 
            +
              ]
         | 
| 15 | 
            +
              s.files = [
         | 
| 16 | 
            +
                ".gitignore",
         | 
| 17 | 
            +
                "History.txt",
         | 
| 18 | 
            +
                "MIT-LICENSE.txt",
         | 
| 19 | 
            +
                "README.rdoc",
         | 
| 20 | 
            +
                "Rakefile",
         | 
| 21 | 
            +
                "Thorfile",
         | 
| 22 | 
            +
                "VERSION",
         | 
| 23 | 
            +
                "lib/rack/bug.rb",
         | 
| 24 | 
            +
                "lib/rack/bug/options.rb",
         | 
| 25 | 
            +
                "lib/rack/bug/panel.rb",
         | 
| 26 | 
            +
                "lib/rack/bug/panel_app.rb",
         | 
| 27 | 
            +
                "lib/rack/bug/panels/active_record_panel.rb",
         | 
| 28 | 
            +
                "lib/rack/bug/panels/active_record_panel/activerecord_extensions.rb",
         | 
| 29 | 
            +
                "lib/rack/bug/panels/cache_panel.rb",
         | 
| 30 | 
            +
                "lib/rack/bug/panels/cache_panel/memcache_extension.rb",
         | 
| 31 | 
            +
                "lib/rack/bug/panels/cache_panel/panel_app.rb",
         | 
| 32 | 
            +
                "lib/rack/bug/panels/cache_panel/stats.rb",
         | 
| 33 | 
            +
                "lib/rack/bug/panels/log_panel.rb",
         | 
| 34 | 
            +
                "lib/rack/bug/panels/log_panel/rails_extension.rb",
         | 
| 35 | 
            +
                "lib/rack/bug/panels/memory_panel.rb",
         | 
| 36 | 
            +
                "lib/rack/bug/panels/rails_info_panel.rb",
         | 
| 37 | 
            +
                "lib/rack/bug/panels/redis_panel.rb",
         | 
| 38 | 
            +
                "lib/rack/bug/panels/redis_panel/redis_extension.rb",
         | 
| 39 | 
            +
                "lib/rack/bug/panels/redis_panel/stats.rb",
         | 
| 40 | 
            +
                "lib/rack/bug/panels/request_variables_panel.rb",
         | 
| 41 | 
            +
                "lib/rack/bug/panels/sql_panel.rb",
         | 
| 42 | 
            +
                "lib/rack/bug/panels/sql_panel/panel_app.rb",
         | 
| 43 | 
            +
                "lib/rack/bug/panels/sql_panel/query.rb",
         | 
| 44 | 
            +
                "lib/rack/bug/panels/sql_panel/sql_extension.rb",
         | 
| 45 | 
            +
                "lib/rack/bug/panels/templates_panel.rb",
         | 
| 46 | 
            +
                "lib/rack/bug/panels/templates_panel/actionview_extension.rb",
         | 
| 47 | 
            +
                "lib/rack/bug/panels/templates_panel/rendering.rb",
         | 
| 48 | 
            +
                "lib/rack/bug/panels/templates_panel/trace.rb",
         | 
| 49 | 
            +
                "lib/rack/bug/panels/timer_panel.rb",
         | 
| 50 | 
            +
                "lib/rack/bug/params_signature.rb",
         | 
| 51 | 
            +
                "lib/rack/bug/public/__rack_bug__/bookmarklet.html",
         | 
| 52 | 
            +
                "lib/rack/bug/public/__rack_bug__/bookmarklet.js",
         | 
| 53 | 
            +
                "lib/rack/bug/public/__rack_bug__/bug.css",
         | 
| 54 | 
            +
                "lib/rack/bug/public/__rack_bug__/bug.js",
         | 
| 55 | 
            +
                "lib/rack/bug/public/__rack_bug__/jquery-1.3.2.js",
         | 
| 56 | 
            +
                "lib/rack/bug/public/__rack_bug__/jquery.tablesorter.min.js",
         | 
| 57 | 
            +
                "lib/rack/bug/public/__rack_bug__/spinner.gif",
         | 
| 58 | 
            +
                "lib/rack/bug/render.rb",
         | 
| 59 | 
            +
                "lib/rack/bug/toolbar.rb",
         | 
| 60 | 
            +
                "lib/rack/bug/views/error.html.erb",
         | 
| 61 | 
            +
                "lib/rack/bug/views/panels/active_record.html.erb",
         | 
| 62 | 
            +
                "lib/rack/bug/views/panels/cache.html.erb",
         | 
| 63 | 
            +
                "lib/rack/bug/views/panels/execute_sql.html.erb",
         | 
| 64 | 
            +
                "lib/rack/bug/views/panels/explain_sql.html.erb",
         | 
| 65 | 
            +
                "lib/rack/bug/views/panels/log.html.erb",
         | 
| 66 | 
            +
                "lib/rack/bug/views/panels/profile_sql.html.erb",
         | 
| 67 | 
            +
                "lib/rack/bug/views/panels/rails_info.html.erb",
         | 
| 68 | 
            +
                "lib/rack/bug/views/panels/redis.html.erb",
         | 
| 69 | 
            +
                "lib/rack/bug/views/panels/request_variables.html.erb",
         | 
| 70 | 
            +
                "lib/rack/bug/views/panels/sql.html.erb",
         | 
| 71 | 
            +
                "lib/rack/bug/views/panels/templates.html.erb",
         | 
| 72 | 
            +
                "lib/rack/bug/views/panels/timer.html.erb",
         | 
| 73 | 
            +
                "lib/rack/bug/views/panels/view_cache.html.erb",
         | 
| 74 | 
            +
                "lib/rack/bug/views/redirect.html.erb",
         | 
| 75 | 
            +
                "lib/rack/bug/views/toolbar.html.erb",
         | 
| 76 | 
            +
                "wested-rack-bug.gemspec",
         | 
| 77 | 
            +
                "spec/fixtures/config.ru",
         | 
| 78 | 
            +
                "spec/fixtures/dummy_panel.rb",
         | 
| 79 | 
            +
                "spec/fixtures/sample_app.rb",
         | 
| 80 | 
            +
                "spec/rack/bug/panels/active_record_panel_spec.rb",
         | 
| 81 | 
            +
                "spec/rack/bug/panels/cache_panel_spec.rb",
         | 
| 82 | 
            +
                "spec/rack/bug/panels/log_panel_spec.rb",
         | 
| 83 | 
            +
                "spec/rack/bug/panels/memory_panel_spec.rb",
         | 
| 84 | 
            +
                "spec/rack/bug/panels/rails_info_panel_spec.rb",
         | 
| 85 | 
            +
                "spec/rack/bug/panels/redis_panel_spec.rb",
         | 
| 86 | 
            +
                "spec/rack/bug/panels/sql_panel_spec.rb",
         | 
| 87 | 
            +
                "spec/rack/bug/panels/templates_panel_spec.rb",
         | 
| 88 | 
            +
                "spec/rack/bug/panels/timer_panel_spec.rb",
         | 
| 89 | 
            +
                "spec/rack/toolbar_spec.rb",
         | 
| 90 | 
            +
                "spec/rcov.opts",
         | 
| 91 | 
            +
                "spec/spec.opts",
         | 
| 92 | 
            +
                "spec/spec_helper.rb"
         | 
| 93 | 
            +
              ]
         | 
| 94 | 
            +
              s.homepage = %q{http://github.com/brynary/rack-bug}
         | 
| 95 | 
            +
              s.require_paths = ["lib"]
         | 
| 96 | 
            +
              s.rubyforge_project = %q{rack-bug}
         | 
| 97 | 
            +
              s.rubygems_version = %q{1.3.5}
         | 
| 98 | 
            +
              s.summary = %q{Debugging toolbar for Rack applications implemented as middleware}
         | 
| 99 | 
            +
              s.test_files = [
         | 
| 100 | 
            +
                "spec/fixtures/dummy_panel.rb",
         | 
| 101 | 
            +
                "spec/fixtures/sample_app.rb",
         | 
| 102 | 
            +
                "spec/rack/bug/panels/active_record_panel_spec.rb",
         | 
| 103 | 
            +
                "spec/rack/bug/panels/cache_panel_spec.rb",
         | 
| 104 | 
            +
                "spec/rack/bug/panels/log_panel_spec.rb",
         | 
| 105 | 
            +
                "spec/rack/bug/panels/memory_panel_spec.rb",
         | 
| 106 | 
            +
                "spec/rack/bug/panels/rails_info_panel_spec.rb",
         | 
| 107 | 
            +
                "spec/rack/bug/panels/redis_panel_spec.rb",
         | 
| 108 | 
            +
                "spec/rack/bug/panels/sql_panel_spec.rb",
         | 
| 109 | 
            +
                "spec/rack/bug/panels/templates_panel_spec.rb",
         | 
| 110 | 
            +
                "spec/rack/bug/panels/timer_panel_spec.rb",
         | 
| 111 | 
            +
                "spec/rack/toolbar_spec.rb",
         | 
| 112 | 
            +
                "spec/spec_helper.rb"
         | 
| 113 | 
            +
              ]
         | 
| 114 | 
            +
             | 
| 115 | 
            +
              if s.respond_to? :specification_version then
         | 
| 116 | 
            +
                current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
         | 
| 117 | 
            +
                s.specification_version = 3
         | 
| 118 | 
            +
             | 
| 119 | 
            +
                if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
         | 
| 120 | 
            +
                  s.add_runtime_dependency(%q<rack>, [">= 1.0"])
         | 
| 121 | 
            +
                else
         | 
| 122 | 
            +
                  s.add_dependency(%q<rack>, [">= 1.0"])
         | 
| 123 | 
            +
                end
         | 
| 124 | 
            +
              else
         | 
| 125 | 
            +
                s.add_dependency(%q<rack>, [">= 1.0"])
         | 
| 126 | 
            +
              end
         | 
| 127 | 
            +
            end
         | 
    
        metadata
    ADDED
    
    | @@ -0,0 +1,153 @@ | |
| 1 | 
            +
            --- !ruby/object:Gem::Specification 
         | 
| 2 | 
            +
            name: wested-rack-bug
         | 
| 3 | 
            +
            version: !ruby/object:Gem::Version 
         | 
| 4 | 
            +
              version: 0.2.2.1
         | 
| 5 | 
            +
            platform: ruby
         | 
| 6 | 
            +
            authors: 
         | 
| 7 | 
            +
            - Bryan Helmkamp
         | 
| 8 | 
            +
            autorequire: 
         | 
| 9 | 
            +
            bindir: bin
         | 
| 10 | 
            +
            cert_chain: []
         | 
| 11 | 
            +
             | 
| 12 | 
            +
            date: 2009-10-27 00:00:00 -07:00
         | 
| 13 | 
            +
            default_executable: 
         | 
| 14 | 
            +
            dependencies: 
         | 
| 15 | 
            +
            - !ruby/object:Gem::Dependency 
         | 
| 16 | 
            +
              name: rack
         | 
| 17 | 
            +
              type: :runtime
         | 
| 18 | 
            +
              version_requirement: 
         | 
| 19 | 
            +
              version_requirements: !ruby/object:Gem::Requirement 
         | 
| 20 | 
            +
                requirements: 
         | 
| 21 | 
            +
                - - ">="
         | 
| 22 | 
            +
                  - !ruby/object:Gem::Version 
         | 
| 23 | 
            +
                    version: "1.0"
         | 
| 24 | 
            +
                version: 
         | 
| 25 | 
            +
            description: 
         | 
| 26 | 
            +
            email: bryan@brynary.com
         | 
| 27 | 
            +
            executables: []
         | 
| 28 | 
            +
             | 
| 29 | 
            +
            extensions: []
         | 
| 30 | 
            +
             | 
| 31 | 
            +
            extra_rdoc_files: 
         | 
| 32 | 
            +
            - README.rdoc
         | 
| 33 | 
            +
            - MIT-LICENSE.txt
         | 
| 34 | 
            +
            files: 
         | 
| 35 | 
            +
            - .gitignore
         | 
| 36 | 
            +
            - History.txt
         | 
| 37 | 
            +
            - MIT-LICENSE.txt
         | 
| 38 | 
            +
            - README.rdoc
         | 
| 39 | 
            +
            - Rakefile
         | 
| 40 | 
            +
            - Thorfile
         | 
| 41 | 
            +
            - VERSION
         | 
| 42 | 
            +
            - lib/rack/bug.rb
         | 
| 43 | 
            +
            - lib/rack/bug/options.rb
         | 
| 44 | 
            +
            - lib/rack/bug/panel.rb
         | 
| 45 | 
            +
            - lib/rack/bug/panel_app.rb
         | 
| 46 | 
            +
            - lib/rack/bug/panels/active_record_panel.rb
         | 
| 47 | 
            +
            - lib/rack/bug/panels/active_record_panel/activerecord_extensions.rb
         | 
| 48 | 
            +
            - lib/rack/bug/panels/cache_panel.rb
         | 
| 49 | 
            +
            - lib/rack/bug/panels/cache_panel/memcache_extension.rb
         | 
| 50 | 
            +
            - lib/rack/bug/panels/cache_panel/panel_app.rb
         | 
| 51 | 
            +
            - lib/rack/bug/panels/cache_panel/stats.rb
         | 
| 52 | 
            +
            - lib/rack/bug/panels/log_panel.rb
         | 
| 53 | 
            +
            - lib/rack/bug/panels/log_panel/rails_extension.rb
         | 
| 54 | 
            +
            - lib/rack/bug/panels/memory_panel.rb
         | 
| 55 | 
            +
            - lib/rack/bug/panels/rails_info_panel.rb
         | 
| 56 | 
            +
            - lib/rack/bug/panels/redis_panel.rb
         | 
| 57 | 
            +
            - lib/rack/bug/panels/redis_panel/redis_extension.rb
         | 
| 58 | 
            +
            - lib/rack/bug/panels/redis_panel/stats.rb
         | 
| 59 | 
            +
            - lib/rack/bug/panels/request_variables_panel.rb
         | 
| 60 | 
            +
            - lib/rack/bug/panels/sql_panel.rb
         | 
| 61 | 
            +
            - lib/rack/bug/panels/sql_panel/panel_app.rb
         | 
| 62 | 
            +
            - lib/rack/bug/panels/sql_panel/query.rb
         | 
| 63 | 
            +
            - lib/rack/bug/panels/sql_panel/sql_extension.rb
         | 
| 64 | 
            +
            - lib/rack/bug/panels/templates_panel.rb
         | 
| 65 | 
            +
            - lib/rack/bug/panels/templates_panel/actionview_extension.rb
         | 
| 66 | 
            +
            - lib/rack/bug/panels/templates_panel/rendering.rb
         | 
| 67 | 
            +
            - lib/rack/bug/panels/templates_panel/trace.rb
         | 
| 68 | 
            +
            - lib/rack/bug/panels/timer_panel.rb
         | 
| 69 | 
            +
            - lib/rack/bug/params_signature.rb
         | 
| 70 | 
            +
            - lib/rack/bug/public/__rack_bug__/bookmarklet.html
         | 
| 71 | 
            +
            - lib/rack/bug/public/__rack_bug__/bookmarklet.js
         | 
| 72 | 
            +
            - lib/rack/bug/public/__rack_bug__/bug.css
         | 
| 73 | 
            +
            - lib/rack/bug/public/__rack_bug__/bug.js
         | 
| 74 | 
            +
            - lib/rack/bug/public/__rack_bug__/jquery-1.3.2.js
         | 
| 75 | 
            +
            - lib/rack/bug/public/__rack_bug__/jquery.tablesorter.min.js
         | 
| 76 | 
            +
            - lib/rack/bug/public/__rack_bug__/spinner.gif
         | 
| 77 | 
            +
            - lib/rack/bug/render.rb
         | 
| 78 | 
            +
            - lib/rack/bug/toolbar.rb
         | 
| 79 | 
            +
            - lib/rack/bug/views/error.html.erb
         | 
| 80 | 
            +
            - lib/rack/bug/views/panels/active_record.html.erb
         | 
| 81 | 
            +
            - lib/rack/bug/views/panels/cache.html.erb
         | 
| 82 | 
            +
            - lib/rack/bug/views/panels/execute_sql.html.erb
         | 
| 83 | 
            +
            - lib/rack/bug/views/panels/explain_sql.html.erb
         | 
| 84 | 
            +
            - lib/rack/bug/views/panels/log.html.erb
         | 
| 85 | 
            +
            - lib/rack/bug/views/panels/profile_sql.html.erb
         | 
| 86 | 
            +
            - lib/rack/bug/views/panels/rails_info.html.erb
         | 
| 87 | 
            +
            - lib/rack/bug/views/panels/redis.html.erb
         | 
| 88 | 
            +
            - lib/rack/bug/views/panels/request_variables.html.erb
         | 
| 89 | 
            +
            - lib/rack/bug/views/panels/sql.html.erb
         | 
| 90 | 
            +
            - lib/rack/bug/views/panels/templates.html.erb
         | 
| 91 | 
            +
            - lib/rack/bug/views/panels/timer.html.erb
         | 
| 92 | 
            +
            - lib/rack/bug/views/panels/view_cache.html.erb
         | 
| 93 | 
            +
            - lib/rack/bug/views/redirect.html.erb
         | 
| 94 | 
            +
            - lib/rack/bug/views/toolbar.html.erb
         | 
| 95 | 
            +
            - wested-rack-bug.gemspec
         | 
| 96 | 
            +
            - spec/fixtures/config.ru
         | 
| 97 | 
            +
            - spec/fixtures/dummy_panel.rb
         | 
| 98 | 
            +
            - spec/fixtures/sample_app.rb
         | 
| 99 | 
            +
            - spec/rack/bug/panels/active_record_panel_spec.rb
         | 
| 100 | 
            +
            - spec/rack/bug/panels/cache_panel_spec.rb
         | 
| 101 | 
            +
            - spec/rack/bug/panels/log_panel_spec.rb
         | 
| 102 | 
            +
            - spec/rack/bug/panels/memory_panel_spec.rb
         | 
| 103 | 
            +
            - spec/rack/bug/panels/rails_info_panel_spec.rb
         | 
| 104 | 
            +
            - spec/rack/bug/panels/redis_panel_spec.rb
         | 
| 105 | 
            +
            - spec/rack/bug/panels/sql_panel_spec.rb
         | 
| 106 | 
            +
            - spec/rack/bug/panels/templates_panel_spec.rb
         | 
| 107 | 
            +
            - spec/rack/bug/panels/timer_panel_spec.rb
         | 
| 108 | 
            +
            - spec/rack/toolbar_spec.rb
         | 
| 109 | 
            +
            - spec/rcov.opts
         | 
| 110 | 
            +
            - spec/spec.opts
         | 
| 111 | 
            +
            - spec/spec_helper.rb
         | 
| 112 | 
            +
            has_rdoc: true
         | 
| 113 | 
            +
            homepage: http://github.com/brynary/rack-bug
         | 
| 114 | 
            +
            licenses: []
         | 
| 115 | 
            +
             | 
| 116 | 
            +
            post_install_message: 
         | 
| 117 | 
            +
            rdoc_options: []
         | 
| 118 | 
            +
             | 
| 119 | 
            +
            require_paths: 
         | 
| 120 | 
            +
            - lib
         | 
| 121 | 
            +
            required_ruby_version: !ruby/object:Gem::Requirement 
         | 
| 122 | 
            +
              requirements: 
         | 
| 123 | 
            +
              - - ">="
         | 
| 124 | 
            +
                - !ruby/object:Gem::Version 
         | 
| 125 | 
            +
                  version: "0"
         | 
| 126 | 
            +
              version: 
         | 
| 127 | 
            +
            required_rubygems_version: !ruby/object:Gem::Requirement 
         | 
| 128 | 
            +
              requirements: 
         | 
| 129 | 
            +
              - - ">"
         | 
| 130 | 
            +
                - !ruby/object:Gem::Version 
         | 
| 131 | 
            +
                  version: 1.3.1
         | 
| 132 | 
            +
              version: 
         | 
| 133 | 
            +
            requirements: []
         | 
| 134 | 
            +
             | 
| 135 | 
            +
            rubyforge_project: rack-bug
         | 
| 136 | 
            +
            rubygems_version: 1.3.5
         | 
| 137 | 
            +
            signing_key: 
         | 
| 138 | 
            +
            specification_version: 3
         | 
| 139 | 
            +
            summary: Debugging toolbar for Rack applications implemented as middleware
         | 
| 140 | 
            +
            test_files: 
         | 
| 141 | 
            +
            - spec/fixtures/dummy_panel.rb
         | 
| 142 | 
            +
            - spec/fixtures/sample_app.rb
         | 
| 143 | 
            +
            - spec/rack/bug/panels/active_record_panel_spec.rb
         | 
| 144 | 
            +
            - spec/rack/bug/panels/cache_panel_spec.rb
         | 
| 145 | 
            +
            - spec/rack/bug/panels/log_panel_spec.rb
         | 
| 146 | 
            +
            - spec/rack/bug/panels/memory_panel_spec.rb
         | 
| 147 | 
            +
            - spec/rack/bug/panels/rails_info_panel_spec.rb
         | 
| 148 | 
            +
            - spec/rack/bug/panels/redis_panel_spec.rb
         | 
| 149 | 
            +
            - spec/rack/bug/panels/sql_panel_spec.rb
         | 
| 150 | 
            +
            - spec/rack/bug/panels/templates_panel_spec.rb
         | 
| 151 | 
            +
            - spec/rack/bug/panels/timer_panel_spec.rb
         | 
| 152 | 
            +
            - spec/rack/toolbar_spec.rb
         | 
| 153 | 
            +
            - spec/spec_helper.rb
         |