ryansch-awesome_print 1.0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +22 -0
- data/CHANGELOG +77 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +26 -0
- data/LICENSE +22 -0
- data/README.md +339 -0
- data/Rakefile +2 -0
- data/lib/ap.rb +10 -0
- data/lib/awesome_print/core_ext/array.rb +71 -0
- data/lib/awesome_print/core_ext/class.rb +22 -0
- data/lib/awesome_print/core_ext/kernel.rb +21 -0
- data/lib/awesome_print/core_ext/logger.rb +20 -0
- data/lib/awesome_print/core_ext/method.rb +21 -0
- data/lib/awesome_print/core_ext/object.rb +22 -0
- data/lib/awesome_print/core_ext/string.rb +31 -0
- data/lib/awesome_print/ext/action_view.rb +18 -0
- data/lib/awesome_print/ext/active_record.rb +64 -0
- data/lib/awesome_print/ext/active_support.rb +47 -0
- data/lib/awesome_print/ext/mongo_mapper.rb +38 -0
- data/lib/awesome_print/ext/mongoid.rb +65 -0
- data/lib/awesome_print/ext/nokogiri.rb +45 -0
- data/lib/awesome_print/formatter.rb +384 -0
- data/lib/awesome_print/inspector.rb +140 -0
- data/lib/awesome_print/version.rb +10 -0
- data/lib/awesome_print.rb +30 -0
- data/spec/colors_spec.rb +106 -0
- data/spec/formats_spec.rb +730 -0
- data/spec/methods_spec.rb +458 -0
- data/spec/objects_spec.rb +79 -0
- data/spec/spec_helper.rb +51 -0
- metadata +133 -0
metadata
ADDED
@@ -0,0 +1,133 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ryansch-awesome_print
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 85
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 0
|
9
|
+
- 2
|
10
|
+
- 1
|
11
|
+
version: 1.0.2.1
|
12
|
+
platform: ruby
|
13
|
+
authors:
|
14
|
+
- Michael Dvorkin
|
15
|
+
- Ryan Schlesinger
|
16
|
+
autorequire:
|
17
|
+
bindir: bin
|
18
|
+
cert_chain: []
|
19
|
+
|
20
|
+
date: 2011-12-28 00:00:00 -08:00
|
21
|
+
default_executable:
|
22
|
+
dependencies:
|
23
|
+
- !ruby/object:Gem::Dependency
|
24
|
+
name: rspec
|
25
|
+
prerelease: false
|
26
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
27
|
+
none: false
|
28
|
+
requirements:
|
29
|
+
- - ">="
|
30
|
+
- !ruby/object:Gem::Version
|
31
|
+
hash: 23
|
32
|
+
segments:
|
33
|
+
- 2
|
34
|
+
- 6
|
35
|
+
- 0
|
36
|
+
version: 2.6.0
|
37
|
+
type: :development
|
38
|
+
version_requirements: *id001
|
39
|
+
- !ruby/object:Gem::Dependency
|
40
|
+
name: fakefs
|
41
|
+
prerelease: false
|
42
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
43
|
+
none: false
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
hash: 21
|
48
|
+
segments:
|
49
|
+
- 0
|
50
|
+
- 2
|
51
|
+
- 1
|
52
|
+
version: 0.2.1
|
53
|
+
type: :development
|
54
|
+
version_requirements: *id002
|
55
|
+
description: "Great Ruby dubugging companion: pretty print Ruby objects to visualize their structure. Supports custom object formatting via plugins"
|
56
|
+
email: ryan@instanceinc.com
|
57
|
+
executables: []
|
58
|
+
|
59
|
+
extensions: []
|
60
|
+
|
61
|
+
extra_rdoc_files: []
|
62
|
+
|
63
|
+
files:
|
64
|
+
- CHANGELOG
|
65
|
+
- Gemfile
|
66
|
+
- Gemfile.lock
|
67
|
+
- LICENSE
|
68
|
+
- Rakefile
|
69
|
+
- README.md
|
70
|
+
- lib/ap.rb
|
71
|
+
- lib/awesome_print/core_ext/array.rb
|
72
|
+
- lib/awesome_print/core_ext/class.rb
|
73
|
+
- lib/awesome_print/core_ext/kernel.rb
|
74
|
+
- lib/awesome_print/core_ext/logger.rb
|
75
|
+
- lib/awesome_print/core_ext/method.rb
|
76
|
+
- lib/awesome_print/core_ext/object.rb
|
77
|
+
- lib/awesome_print/core_ext/string.rb
|
78
|
+
- lib/awesome_print/ext/action_view.rb
|
79
|
+
- lib/awesome_print/ext/active_record.rb
|
80
|
+
- lib/awesome_print/ext/active_support.rb
|
81
|
+
- lib/awesome_print/ext/mongo_mapper.rb
|
82
|
+
- lib/awesome_print/ext/mongoid.rb
|
83
|
+
- lib/awesome_print/ext/nokogiri.rb
|
84
|
+
- lib/awesome_print/formatter.rb
|
85
|
+
- lib/awesome_print/inspector.rb
|
86
|
+
- lib/awesome_print/version.rb
|
87
|
+
- lib/awesome_print.rb
|
88
|
+
- spec/colors_spec.rb
|
89
|
+
- spec/formats_spec.rb
|
90
|
+
- spec/methods_spec.rb
|
91
|
+
- spec/objects_spec.rb
|
92
|
+
- spec/spec_helper.rb
|
93
|
+
- .gitignore
|
94
|
+
has_rdoc: true
|
95
|
+
homepage: http://github.com/ryansch/awesome_print
|
96
|
+
licenses: []
|
97
|
+
|
98
|
+
post_install_message:
|
99
|
+
rdoc_options: []
|
100
|
+
|
101
|
+
require_paths:
|
102
|
+
- lib
|
103
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
104
|
+
none: false
|
105
|
+
requirements:
|
106
|
+
- - ">="
|
107
|
+
- !ruby/object:Gem::Version
|
108
|
+
hash: 3
|
109
|
+
segments:
|
110
|
+
- 0
|
111
|
+
version: "0"
|
112
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
113
|
+
none: false
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
hash: 3
|
118
|
+
segments:
|
119
|
+
- 0
|
120
|
+
version: "0"
|
121
|
+
requirements: []
|
122
|
+
|
123
|
+
rubyforge_project: awesome_print
|
124
|
+
rubygems_version: 1.6.2
|
125
|
+
signing_key:
|
126
|
+
specification_version: 3
|
127
|
+
summary: Pretty print Ruby objects with proper indentation and colors
|
128
|
+
test_files:
|
129
|
+
- spec/colors_spec.rb
|
130
|
+
- spec/formats_spec.rb
|
131
|
+
- spec/methods_spec.rb
|
132
|
+
- spec/objects_spec.rb
|
133
|
+
- spec/spec_helper.rb
|