looksee 4.4.0 → 5.1.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 600194bca92f1417cef56f15fb778bf97169424c779269d16dc87afde159013b
4
- data.tar.gz: a9548afb11a7e6ebbe7fa43d7155d6258871530d135197f93ed79573d899432a
3
+ metadata.gz: e79d312ff99899463a1ae1c3ef7c223bd2761cd51d03fdb4349cb3620c06f624
4
+ data.tar.gz: 2c5e23a018a88ef8c7bed8c3e9ea230ed81fb58dcd6f2479b3752cbe5e44cac3
5
5
  SHA512:
6
- metadata.gz: '08f3978dbed48efa7daaba8fe778b9dfdf3032748dc2cdfd9ac5d36667bfd2ea7eff4b3662d660f97784d99459d082c0228c188bd2b3261e3ed5935d06a45460'
7
- data.tar.gz: ec4dbddc1ca894b843d0ad187ea4ce35a4a1c6890a920790479d01e35ccb81f19bf321dff7001060d5f3280dd312d27b7c74494a756fad02613ad30b96dcae86
6
+ metadata.gz: ef17ec0b836a791aac8b814b9f825aceff66ea346f1ba3f2a6e9504e686d439013583b2c362b2e2c5626d32ca9ec58fd2f1dfecf95f9b503ccb2fd2ee08ceca5
7
+ data.tar.gz: 5e0d129f6977c2b32b8671168b9fd1ab5e5bc26a1efc0e07e88176ac80c8675d459210c639ef54ad51b088971acb75964886571a8aac81e04a7cc241ac736d51
data/CHANGELOG CHANGED
@@ -1,3 +1,19 @@
1
+ == 5.1.0 2025-03-28
2
+
3
+ * Support for MRI 3.3.
4
+ * Fix color escaping in Looksee.help.
5
+
6
+ == 5.0.0 2022-11-08
7
+
8
+ * Rename #ls to #look. Sorry! irb now defines an ls built-in, though, and the
9
+ old name emits a warning on startup.
10
+ * Support for MRI 3.2.0 preview2. From 3.2 onwards, we once again display
11
+ undef'd methods.
12
+ * Remove support for MRI < 2.7. (2.6 is EOL anyway.)
13
+ * Remove support for Rubinius.
14
+ * Fix showing modules included in singleton classes with no direct methods.
15
+ * Fix ANSI color escaping in ruby >= 3.0.
16
+
1
17
  == 4.4.0 2021-01-17
2
18
 
3
19
  * Support for MRI 3.0. [Mathieu Jobin]
data/README.markdown CHANGED
@@ -13,73 +13,97 @@ Pop this in your `.irbrc`:
13
13
 
14
14
  require 'looksee'
15
15
 
16
- Now each object has a method `ls`, which shows you all its methods.
17
-
18
- irb> [].ls
19
- => BasicObject
20
- ! __id__ initialize method_missing singleton_method_undefined
21
- != __send__ instance_eval singleton_method_added
22
- == equal? instance_exec singleton_method_removed
16
+ Now each object has a method `look`, which shows you all its methods.
17
+
18
+ irb> [].look
19
+ =>
20
+ BasicObject
21
+ ! __send__ instance_exec singleton_method_undefined
22
+ != equal? method_missing
23
+ == initialize singleton_method_added
24
+ __id__ instance_eval singleton_method_removed
23
25
  Kernel
24
- !~ enum_for kind_of? respond_to_missing?
25
- <=> eql? lambda select
26
- === eval load send
27
- =~ exec local_variables set_trace_func
28
- Array exit loop singleton_class
29
- Complex exit! method singleton_method
30
- Float extend methods singleton_methods
31
- Hash fail nil? sleep
32
- Integer fork object_id spawn
33
- Rational format open sprintf
34
- String freeze p srand
35
- __callee__ frozen? print syscall
36
- __dir__ gem printf system
37
- __method__ gem_original_require private_methods taint
38
- ` gets proc tainted?
39
- abort global_variables protected_methods tap
40
- at_exit hash public_method test
41
- autoload initialize_clone public_methods throw
42
- autoload? initialize_copy public_send to_enum
43
- binding initialize_dup putc to_s
44
- block_given? inspect puts trace_var
45
- caller instance_of? raise trap
46
- caller_locations instance_variable_defined? rand trust
47
- catch instance_variable_get readline untaint
48
- class instance_variable_set readlines untrace_var
49
- clone instance_variables remove_instance_variable untrust
50
- define_singleton_method is_a? require untrusted?
51
- display iterator? require_relative warn
52
- dup itself respond_to?
26
+ !~ format public_method
27
+ <=> freeze public_methods
28
+ === frozen? public_send
29
+ Array gem putc
30
+ Complex gem_original_require puts
31
+ Float gets raise
32
+ Hash global_variables rand
33
+ Integer hash readline
34
+ Pathname initialize_clone readlines
35
+ Rational initialize_copy remove_instance_variable
36
+ String initialize_dup require
37
+ __callee__ inspect require_relative
38
+ __dir__ instance_of? respond_to?
39
+ __method__ instance_variable_defined? respond_to_missing?
40
+ ` instance_variable_get select
41
+ abort instance_variable_set send
42
+ at_exit instance_variables set_trace_func
43
+ autoload is_a? singleton_class
44
+ autoload? iterator? singleton_method
45
+ binding itself singleton_methods
46
+ block_given? kind_of? sleep
47
+ caller lambda spawn
48
+ caller_locations load sprintf
49
+ catch local_variables srand
50
+ class loop syscall
51
+ clone method system
52
+ define_singleton_method methods tap
53
+ display nil? test
54
+ dup object_id then
55
+ enum_for open throw
56
+ eql? p to_enum
57
+ eval pp to_s
58
+ exec pretty_inspect trace_var
59
+ exit print trap
60
+ exit! printf untrace_var
61
+ extend private_methods warn
62
+ fail proc yield_self
63
+ fork protected_methods
53
64
  Looksee::ObjectMixin
54
- ls
65
+ look
66
+ PP::ObjectMixin
67
+ pretty_print pretty_print_inspect
68
+ pretty_print_cycle pretty_print_instance_variables
55
69
  Object
56
- DelegateClass default_src_encoding irb_binding
70
+ DelegateClass
57
71
  Enumerable
58
- all? detect entries group_by min reject take
59
- any? drop find include? min_by reverse_each take_while
60
- chunk drop_while find_all inject minmax select to_a
61
- chunk_while each_cons find_index lazy minmax_by slice_after to_h
62
- collect each_entry first map none? slice_before to_set
63
- collect_concat each_slice flat_map max one? slice_when zip
64
- count each_with_index grep max_by partition sort
65
- cycle each_with_object grep_v member? reduce sort_by
72
+ all? drop find_all max reject tally
73
+ any? drop_while find_index max_by reverse_each to_a
74
+ chain each_cons first member? select to_h
75
+ chunk each_entry flat_map min slice_after to_set
76
+ chunk_while each_slice grep min_by slice_before uniq
77
+ collect each_with_index grep_v minmax slice_when zip
78
+ collect_concat each_with_object group_by minmax_by sort
79
+ compact entries include? none? sort_by
80
+ count filter inject one? sum
81
+ cycle filter_map lazy partition take
82
+ detect find map reduce take_while
66
83
  Array
67
- & collect! eql? keep_if reverse sort!
68
- * combination fetch last reverse! sort_by!
69
- + compact fill length reverse_each take
70
- - compact! find_index map rindex take_while
71
- << concat first map! rotate to_a
72
- <=> count flatten pack rotate! to_ary
73
- == cycle flatten! permutation sample to_h
74
- [] delete frozen? pop select to_s
75
- []= delete_at hash product select! transpose
76
- any? delete_if include? push shift uniq
77
- assoc dig index rassoc shuffle uniq!
78
- at drop initialize reject shuffle! unshift
79
- bsearch drop_while initialize_copy reject! size values_at
80
- bsearch_index each insert repeated_combination slice zip
81
- clear each_index inspect repeated_permutation slice! |
82
- collect empty? join replace sort
84
+ & count include? pretty_print size
85
+ * cycle index pretty_print_cycle slice
86
+ + deconstruct initialize product slice!
87
+ - delete initialize_copy push sort
88
+ << delete_at insert rassoc sort!
89
+ <=> delete_if inspect reject sort_by!
90
+ == difference intersect? reject! sum
91
+ [] dig intersection repeated_combination take
92
+ []= drop join repeated_permutation take_while
93
+ all? drop_while keep_if replace to_a
94
+ any? each last reverse to_ary
95
+ append each_index length reverse! to_h
96
+ assoc empty? map reverse_each to_s
97
+ at eql? map! rindex transpose
98
+ bsearch fetch max rotate union
99
+ bsearch_index fill min rotate! uniq
100
+ clear filter minmax sample uniq!
101
+ collect filter! none? select unshift
102
+ collect! find_index one? select! values_at
103
+ combination first pack shelljoin zip
104
+ compact flatten permutation shift |
105
+ compact! flatten! pop shuffle
106
+ concat hash prepend shuffle!
83
107
 
84
108
  Methods are colored according to whether they're public, protected,
85
109
  private, undefined (using Module#undef_method), or overridden.
@@ -88,11 +112,11 @@ private, undefined (using Module#undef_method), or overridden.
88
112
 
89
113
  You can hide, say, private methods like this:
90
114
 
91
- irb> [].ls :noprivate
115
+ irb> [].look :noprivate
92
116
 
93
117
  Or filter the list by Regexp:
94
118
 
95
- irb> [].ls /^to_/
119
+ irb> [].look /^to_/
96
120
  => BasicObject
97
121
  Kernel
98
122
  to_enum to_s
@@ -107,32 +131,32 @@ Or filter the list by Regexp:
107
131
  ## Proxy objects
108
132
 
109
133
  Objects that delegate everything via `method_missing` to some other object can
110
- be tricky, because they will delegate `ls` itself. To view such objects, you can
111
- always do:
134
+ be tricky, because they will delegate `look` itself. To view such objects, you
135
+ can always do:
112
136
 
113
137
  Looksee[object]
114
138
 
115
- This will also work for `BasicObject` instances that don't have an `ls` method.
116
- `Object#ls` is simply a wrapper around `Looksee.[]`.
139
+ This will also work for `BasicObject` instances that don't have an `look`
140
+ method. `Object#look` is simply a wrapper around `Looksee.[]`.
117
141
 
118
142
  ## To the source!
119
143
 
120
144
  If you want to know more about any of those methods, Looksee can
121
145
  take you straight to the source in your editor:
122
146
 
123
- [].ls.edit :to_set
147
+ [].look.edit :to_set
124
148
 
125
149
  By default, this uses `vi`; customize it like this:
126
150
 
127
151
  # %f = file, %l = line number
128
152
  Looksee.editor = "mate -l%l %f"
129
153
 
130
- ## `ls` in your way?
154
+ ## `look` in your way?
131
155
 
132
- If you have a library that for some reason can't handle an `ls` method existing
133
- on `Object`, you may rename it like this:
156
+ If you have a library that for some reason can't handle an `look` method
157
+ existing on `Object`, you may rename it like this:
134
158
 
135
- Looksee.rename :_ls
159
+ Looksee.rename :_look
136
160
 
137
161
  ## Quick Reference
138
162
 
data/Rakefile CHANGED
@@ -11,3 +11,30 @@ end
11
11
  task :default => [:clobber, :ext] do
12
12
  sh 'bundle exec rspec -I. spec'
13
13
  end
14
+
15
+ task :test_all do
16
+ docker_configs.each do |config|
17
+ docker_run(config, 'rspec')
18
+ end
19
+ end
20
+
21
+ task :console, :config do |task, args|
22
+ docker_run(args[:config], nil)
23
+ end
24
+
25
+ task :test, :config do |task, args|
26
+ docker_run(args[:config], 'rspec')
27
+ end
28
+
29
+ task :shell, :config do |task, args|
30
+ docker_run(args[:config], '/bin/bash')
31
+ end
32
+
33
+ def docker_configs
34
+ Dir['Dockerfile.*'].map { |path| path[/(?<=\.).*?\z/] }
35
+ end
36
+
37
+ def docker_run(config, command)
38
+ sh "docker build -f Dockerfile.#{config} -t looksee:#{config} ."
39
+ sh "docker run -it looksee:#{config} #{command}"
40
+ end
data/ext/extconf.rb CHANGED
@@ -4,16 +4,13 @@ extension = ruby_engine == 'ruby' ? 'mri' : ruby_engine
4
4
  require 'mkmf'
5
5
  $CPPFLAGS << " -DRUBY_VERSION=#{RUBY_VERSION.tr('.', '')}"
6
6
  if extension == 'mri'
7
- if RUBY_VERSION >= '3.0.0'
7
+ if RUBY_VERSION >= '3.2.0'
8
+ $CPPFLAGS << " -Imri/3.2.0"
9
+ elsif RUBY_VERSION >= '3.0.0'
8
10
  $CPPFLAGS << " -Imri/3.0.0"
9
- elsif RUBY_VERSION >= '2.7.0'
11
+ else
10
12
  $CPPFLAGS << " -Imri/2.7.0"
11
- elsif RUBY_VERSION >= '2.3.0'
12
- $CPPFLAGS << " -Imri/2.3.0"
13
- elsif RUBY_VERSION >= '2.2.0'
14
- $CPPFLAGS << " -Imri/2.2.0"
15
- elsif RUBY_VERSION >= '2.1.0'
16
- $CPPFLAGS << " -Imri/2.1.0"
17
13
  end
18
14
  end
15
+
19
16
  create_makefile "looksee/#{extension}", extension
@@ -0,0 +1,36 @@
1
+ #ifndef RUBY_ID_TABLE_H
2
+ #define RUBY_ID_TABLE_H 1
3
+ #include "ruby/internal/config.h"
4
+ #include <stddef.h>
5
+ #include "ruby/ruby.h"
6
+
7
+ struct rb_id_table;
8
+
9
+ /* compatible with ST_* */
10
+ enum rb_id_table_iterator_result {
11
+ ID_TABLE_CONTINUE = ST_CONTINUE,
12
+ ID_TABLE_STOP = ST_STOP,
13
+ ID_TABLE_DELETE = ST_DELETE,
14
+ ID_TABLE_REPLACE = ST_REPLACE,
15
+ ID_TABLE_ITERATOR_RESULT_END
16
+ };
17
+
18
+ struct rb_id_table *rb_id_table_create(size_t size);
19
+ void rb_id_table_free(struct rb_id_table *tbl);
20
+ void rb_id_table_clear(struct rb_id_table *tbl);
21
+
22
+ size_t rb_id_table_size(const struct rb_id_table *tbl);
23
+ size_t rb_id_table_memsize(const struct rb_id_table *tbl);
24
+
25
+ int rb_id_table_insert(struct rb_id_table *tbl, ID id, VALUE val);
26
+ int rb_id_table_lookup(struct rb_id_table *tbl, ID id, VALUE *valp);
27
+ int rb_id_table_delete(struct rb_id_table *tbl, ID id);
28
+
29
+ typedef enum rb_id_table_iterator_result rb_id_table_update_value_callback_func_t(VALUE *val, void *data, int existing);
30
+ typedef enum rb_id_table_iterator_result rb_id_table_foreach_func_t(ID id, VALUE val, void *data);
31
+ typedef enum rb_id_table_iterator_result rb_id_table_foreach_values_func_t(VALUE val, void *data);
32
+ void rb_id_table_foreach(struct rb_id_table *tbl, rb_id_table_foreach_func_t *func, void *data);
33
+ void rb_id_table_foreach_values(struct rb_id_table *tbl, rb_id_table_foreach_values_func_t *func, void *data);
34
+ void rb_id_table_foreach_values_with_replace(struct rb_id_table *tbl, rb_id_table_foreach_values_func_t *func, rb_id_table_update_value_callback_func_t *replace, void *data);
35
+
36
+ #endif /* RUBY_ID_TABLE_H */
@@ -0,0 +1,162 @@
1
+ #ifndef INTERNAL_ARRAY_H /*-*-C-*-vi:se ft=c:*/
2
+ #define INTERNAL_ARRAY_H
3
+ /**
4
+ * @author Ruby developers <ruby-core@ruby-lang.org>
5
+ * @copyright This file is a part of the programming language Ruby.
6
+ * Permission is hereby granted, to either redistribute and/or
7
+ * modify this file, provided that the conditions mentioned in the
8
+ * file COPYING are met. Consult the file for details.
9
+ * @brief Internal header for Array.
10
+ */
11
+ #include "ruby/internal/config.h"
12
+ #include <stddef.h> /* for size_t */
13
+ #include "internal/static_assert.h" /* for STATIC_ASSERT */
14
+ #include "ruby/internal/stdbool.h" /* for bool */
15
+ #include "ruby/ruby.h" /* for RARRAY_LEN */
16
+
17
+ #ifndef ARRAY_DEBUG
18
+ # define ARRAY_DEBUG (0+RUBY_DEBUG)
19
+ #endif
20
+
21
+ #define RARRAY_SHARED_FLAG ELTS_SHARED
22
+ #define RARRAY_SHARED_ROOT_FLAG FL_USER12
23
+ #define RARRAY_PTR_IN_USE_FLAG FL_USER14
24
+
25
+ /* array.c */
26
+ VALUE rb_ary_last(int, const VALUE *, VALUE);
27
+ void rb_ary_set_len(VALUE, long);
28
+ void rb_ary_delete_same(VALUE, VALUE);
29
+ VALUE rb_ary_hidden_new_fill(long capa);
30
+ VALUE rb_ary_at(VALUE, VALUE);
31
+ size_t rb_ary_memsize(VALUE);
32
+ VALUE rb_to_array_type(VALUE obj);
33
+ VALUE rb_to_array(VALUE obj);
34
+ void rb_ary_cancel_sharing(VALUE ary);
35
+ size_t rb_ary_size_as_embedded(VALUE ary);
36
+ void rb_ary_make_embedded(VALUE ary);
37
+ bool rb_ary_embeddable_p(VALUE ary);
38
+
39
+ static inline VALUE rb_ary_entry_internal(VALUE ary, long offset);
40
+ static inline bool ARY_PTR_USING_P(VALUE ary);
41
+ static inline void RARY_TRANSIENT_SET(VALUE ary);
42
+ static inline void RARY_TRANSIENT_UNSET(VALUE ary);
43
+
44
+ MJIT_SYMBOL_EXPORT_BEGIN
45
+ VALUE rb_ary_tmp_new_from_values(VALUE, long, const VALUE *);
46
+ VALUE rb_check_to_array(VALUE ary);
47
+ VALUE rb_ary_behead(VALUE, long);
48
+ VALUE rb_ary_aref1(VALUE ary, VALUE i);
49
+
50
+ struct rb_execution_context_struct;
51
+ VALUE rb_ec_ary_new_from_values(struct rb_execution_context_struct *ec, long n, const VALUE *elts);
52
+ MJIT_SYMBOL_EXPORT_END
53
+
54
+ // YJIT needs this function to never allocate and never raise
55
+ static inline VALUE
56
+ rb_ary_entry_internal(VALUE ary, long offset)
57
+ {
58
+ long len = RARRAY_LEN(ary);
59
+ const VALUE *ptr = RARRAY_CONST_PTR_TRANSIENT(ary);
60
+ if (len == 0) return Qnil;
61
+ if (offset < 0) {
62
+ offset += len;
63
+ if (offset < 0) return Qnil;
64
+ }
65
+ else if (len <= offset) {
66
+ return Qnil;
67
+ }
68
+ return ptr[offset];
69
+ }
70
+
71
+ static inline bool
72
+ ARY_PTR_USING_P(VALUE ary)
73
+ {
74
+ return FL_TEST_RAW(ary, RARRAY_PTR_IN_USE_FLAG);
75
+ }
76
+
77
+ RBIMPL_ATTR_MAYBE_UNUSED()
78
+ static inline int
79
+ ary_should_not_be_shared_and_embedded(VALUE ary)
80
+ {
81
+ return !FL_ALL_RAW(ary, RARRAY_SHARED_FLAG|RARRAY_EMBED_FLAG);
82
+ }
83
+
84
+ static inline bool
85
+ ARY_SHARED_P(VALUE ary)
86
+ {
87
+ assert(RB_TYPE_P(ary, T_ARRAY));
88
+ assert(ary_should_not_be_shared_and_embedded(ary));
89
+ return FL_TEST_RAW(ary, RARRAY_SHARED_FLAG);
90
+ }
91
+
92
+ static inline bool
93
+ ARY_EMBED_P(VALUE ary)
94
+ {
95
+ assert(RB_TYPE_P(ary, T_ARRAY));
96
+ assert(ary_should_not_be_shared_and_embedded(ary));
97
+ return FL_TEST_RAW(ary, RARRAY_EMBED_FLAG);
98
+ }
99
+
100
+ static inline VALUE
101
+ ARY_SHARED_ROOT(VALUE ary)
102
+ {
103
+ assert(ARY_SHARED_P(ary));
104
+ return RARRAY(ary)->as.heap.aux.shared_root;
105
+ }
106
+
107
+ static inline bool
108
+ ARY_SHARED_ROOT_P(VALUE ary)
109
+ {
110
+ assert(RB_TYPE_P(ary, T_ARRAY));
111
+ return FL_TEST_RAW(ary, RARRAY_SHARED_ROOT_FLAG);
112
+ }
113
+
114
+ static inline long
115
+ ARY_SHARED_ROOT_REFCNT(VALUE ary)
116
+ {
117
+ assert(ARY_SHARED_ROOT_P(ary));
118
+ return RARRAY(ary)->as.heap.aux.capa;
119
+ }
120
+
121
+ static inline void
122
+ RARY_TRANSIENT_SET(VALUE ary)
123
+ {
124
+ #if USE_TRANSIENT_HEAP
125
+ FL_SET_RAW(ary, RARRAY_TRANSIENT_FLAG);
126
+ #endif
127
+ }
128
+
129
+ static inline void
130
+ RARY_TRANSIENT_UNSET(VALUE ary)
131
+ {
132
+ #if USE_TRANSIENT_HEAP
133
+ FL_UNSET_RAW(ary, RARRAY_TRANSIENT_FLAG);
134
+ #endif
135
+ }
136
+
137
+ #undef rb_ary_new_from_args
138
+ #if RBIMPL_HAS_WARNING("-Wgnu-zero-variadic-macro-arguments")
139
+ # /* Skip it; clang -pedantic doesn't like the following */
140
+ #elif defined(__GNUC__) && defined(HAVE_VA_ARGS_MACRO)
141
+ #define rb_ary_new_from_args(n, ...) \
142
+ __extension__ ({ \
143
+ const VALUE args_to_new_ary[] = {__VA_ARGS__}; \
144
+ if (__builtin_constant_p(n)) { \
145
+ STATIC_ASSERT(rb_ary_new_from_args, numberof(args_to_new_ary) == (n)); \
146
+ } \
147
+ rb_ary_new_from_values(numberof(args_to_new_ary), args_to_new_ary); \
148
+ })
149
+ #endif
150
+
151
+ #undef RARRAY_AREF
152
+ RBIMPL_ATTR_PURE_UNLESS_DEBUG()
153
+ RBIMPL_ATTR_ARTIFICIAL()
154
+ static inline VALUE
155
+ RARRAY_AREF(VALUE ary, long i)
156
+ {
157
+ RBIMPL_ASSERT_TYPE(ary, RUBY_T_ARRAY);
158
+
159
+ return RARRAY_CONST_PTR_TRANSIENT(ary)[i];
160
+ }
161
+
162
+ #endif /* INTERNAL_ARRAY_H */