debugbar 0.0.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.textile +18 -0
- data/lib/debugbar.rb +8 -0
- data/lib/debugbar/engine.rb +10 -0
- data/lib/debugbar/railties/tasks.rake +1 -0
- metadata +59 -0
data/README.textile
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
h1. Debug Bar Gem v0.0.1
|
2
|
+
|
3
|
+
h2. Installation
|
4
|
+
|
5
|
+
Add the following to your Gemfile:
|
6
|
+
|
7
|
+
<pre><code>gem 'debugbar'</code></pre>
|
8
|
+
|
9
|
+
And restart your application with:
|
10
|
+
|
11
|
+
<pre><code>bundle install
|
12
|
+
touch tmp/restart.txt</code></pre>
|
13
|
+
|
14
|
+
h2. Introduction
|
15
|
+
|
16
|
+
DebugBar provides a Django/Symfony like Debug Bar for Ruby on Rails 3.
|
17
|
+
|
18
|
+
This project is only in it's infancy...
|
data/lib/debugbar.rb
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
module Debugbar
|
2
|
+
class Engine < Rails::Engine
|
3
|
+
# This should fix rails3 rc, and also work with beta
|
4
|
+
config.autoload_paths << File.expand_path(File.join(File.dirname(__FILE__), "..", "..")) if config.respond_to? :autoload_paths
|
5
|
+
|
6
|
+
rake_tasks do
|
7
|
+
load "debugbar/railties/tasks.rake"
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
# Put your custom rake tasks here
|
metadata
ADDED
@@ -0,0 +1,59 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: debugbar
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease:
|
5
|
+
version: 0.0.1
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Andy Jeffries
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
|
13
|
+
date: 2011-03-17 00:00:00 +00:00
|
14
|
+
default_executable:
|
15
|
+
dependencies: []
|
16
|
+
|
17
|
+
description: Debugbar gem for Rails 3
|
18
|
+
email: andy@andyjeffries.co.uk
|
19
|
+
executables: []
|
20
|
+
|
21
|
+
extensions: []
|
22
|
+
|
23
|
+
extra_rdoc_files:
|
24
|
+
- README.textile
|
25
|
+
files:
|
26
|
+
- lib/debugbar.rb
|
27
|
+
- lib/debugbar/engine.rb
|
28
|
+
- lib/debugbar/railties/tasks.rake
|
29
|
+
- README.textile
|
30
|
+
has_rdoc: true
|
31
|
+
homepage: http://andyjeffries.co.uk/
|
32
|
+
licenses: []
|
33
|
+
|
34
|
+
post_install_message:
|
35
|
+
rdoc_options:
|
36
|
+
- --charset=UTF-8
|
37
|
+
require_paths:
|
38
|
+
- lib
|
39
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
40
|
+
none: false
|
41
|
+
requirements:
|
42
|
+
- - ">="
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
version: "0"
|
45
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
46
|
+
none: false
|
47
|
+
requirements:
|
48
|
+
- - ">="
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: "0"
|
51
|
+
requirements: []
|
52
|
+
|
53
|
+
rubyforge_project:
|
54
|
+
rubygems_version: 1.6.1
|
55
|
+
signing_key:
|
56
|
+
specification_version: 3
|
57
|
+
summary: Debugbar gem for Rails 3
|
58
|
+
test_files: []
|
59
|
+
|