matthew-method_lister 0.2.0
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.markdown +177 -0
- data/lib/method_lister/color_display.rb +77 -0
- data/lib/method_lister/find_result.rb +50 -0
- data/lib/method_lister/finder.rb +107 -0
- data/lib/method_lister/ruby_ext.rb +24 -0
- data/lib/method_lister/simple_display.rb +55 -0
- data/lib/method_lister.rb +7 -0
- data/spec/color_display_spec.rb +37 -0
- data/spec/find_result_spec.rb +162 -0
- data/spec/finder_spec.rb +146 -0
- data/spec/helpers/matchers/list_methods.rb +41 -0
- data/spec/helpers/object_mother/find_result.rb +3 -0
- data/spec/helpers/object_mother/find_scenario.rb +45 -0
- data/spec/rcov.opts +6 -0
- data/spec/ruby_ext_spec.rb +55 -0
- data/spec/scenarios/class_with_inheritance.rb +17 -0
- data/spec/scenarios/class_with_inheritance_and_modules.rb +25 -0
- data/spec/scenarios/eigenclass.rb +18 -0
- data/spec/scenarios/eigenclass_with_modules.rb +26 -0
- data/spec/scenarios/filters_results_without_methods.rb +20 -0
- data/spec/scenarios/mixed_visibility_methods.rb +36 -0
- data/spec/scenarios/object_without_eigenclass.rb +4 -0
- data/spec/scenarios/overloaded_methods.rb +35 -0
- data/spec/scenarios/overloaded_methods_with_modules_mixed_in.rb +26 -0
- data/spec/scenarios/private_methods.rb +14 -0
- data/spec/scenarios/single_class.rb +11 -0
- data/spec/scenarios/single_class_with_module_mixed_in.rb +19 -0
- data/spec/simple_display_spec.rb +38 -0
- data/spec/spec.opts +7 -0
- data/spec/spec_helper.rb +14 -0
- metadata +86 -0
metadata
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: matthew-method_lister
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.2.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Matthew O'Connor
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
|
|
12
|
+
date: 2008-10-27 00:00:00 -07:00
|
|
13
|
+
default_executable:
|
|
14
|
+
dependencies: []
|
|
15
|
+
|
|
16
|
+
description:
|
|
17
|
+
email: matthew @nospam@ canonical.org
|
|
18
|
+
executables: []
|
|
19
|
+
|
|
20
|
+
extensions: []
|
|
21
|
+
|
|
22
|
+
extra_rdoc_files:
|
|
23
|
+
- README.markdown
|
|
24
|
+
files:
|
|
25
|
+
- lib/method_lister/color_display.rb
|
|
26
|
+
- lib/method_lister/find_result.rb
|
|
27
|
+
- lib/method_lister/finder.rb
|
|
28
|
+
- lib/method_lister/ruby_ext.rb
|
|
29
|
+
- lib/method_lister/simple_display.rb
|
|
30
|
+
- lib/method_lister.rb
|
|
31
|
+
- spec/color_display_spec.rb
|
|
32
|
+
- spec/find_result_spec.rb
|
|
33
|
+
- spec/finder_spec.rb
|
|
34
|
+
- spec/helpers/matchers/list_methods.rb
|
|
35
|
+
- spec/helpers/object_mother/find_result.rb
|
|
36
|
+
- spec/helpers/object_mother/find_scenario.rb
|
|
37
|
+
- spec/rcov.opts
|
|
38
|
+
- spec/ruby_ext_spec.rb
|
|
39
|
+
- spec/scenarios/class_with_inheritance.rb
|
|
40
|
+
- spec/scenarios/class_with_inheritance_and_modules.rb
|
|
41
|
+
- spec/scenarios/eigenclass.rb
|
|
42
|
+
- spec/scenarios/eigenclass_with_modules.rb
|
|
43
|
+
- spec/scenarios/filters_results_without_methods.rb
|
|
44
|
+
- spec/scenarios/mixed_visibility_methods.rb
|
|
45
|
+
- spec/scenarios/object_without_eigenclass.rb
|
|
46
|
+
- spec/scenarios/overloaded_methods.rb
|
|
47
|
+
- spec/scenarios/overloaded_methods_with_modules_mixed_in.rb
|
|
48
|
+
- spec/scenarios/private_methods.rb
|
|
49
|
+
- spec/scenarios/single_class.rb
|
|
50
|
+
- spec/scenarios/single_class_with_module_mixed_in.rb
|
|
51
|
+
- spec/simple_display_spec.rb
|
|
52
|
+
- spec/spec.opts
|
|
53
|
+
- spec/spec_helper.rb
|
|
54
|
+
- README.markdown
|
|
55
|
+
has_rdoc: true
|
|
56
|
+
homepage: http://github.com/matthew/method_lister/tree/master
|
|
57
|
+
post_install_message:
|
|
58
|
+
rdoc_options: []
|
|
59
|
+
|
|
60
|
+
require_paths:
|
|
61
|
+
- lib
|
|
62
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
63
|
+
requirements:
|
|
64
|
+
- - ">="
|
|
65
|
+
- !ruby/object:Gem::Version
|
|
66
|
+
version: "0"
|
|
67
|
+
version:
|
|
68
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
|
+
requirements:
|
|
70
|
+
- - ">="
|
|
71
|
+
- !ruby/object:Gem::Version
|
|
72
|
+
version: "0"
|
|
73
|
+
version:
|
|
74
|
+
requirements: []
|
|
75
|
+
|
|
76
|
+
rubyforge_project: method_lister
|
|
77
|
+
rubygems_version: 1.2.0
|
|
78
|
+
signing_key:
|
|
79
|
+
specification_version: 2
|
|
80
|
+
summary: Pretty method listers and finders, for use in IRB.
|
|
81
|
+
test_files:
|
|
82
|
+
- spec/color_display_spec.rb
|
|
83
|
+
- spec/find_result_spec.rb
|
|
84
|
+
- spec/finder_spec.rb
|
|
85
|
+
- spec/ruby_ext_spec.rb
|
|
86
|
+
- spec/simple_display_spec.rb
|