super-smart-mod 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.
- checksums.yaml +7 -0
- data/pry-0.16.0/CHANGELOG.md +1211 -0
- data/pry-0.16.0/LICENSE +25 -0
- data/pry-0.16.0/README.md +469 -0
- data/pry-0.16.0/bin/pry +13 -0
- data/pry-0.16.0/lib/pry/basic_object.rb +10 -0
- data/pry-0.16.0/lib/pry/block_command.rb +22 -0
- data/pry-0.16.0/lib/pry/class_command.rb +194 -0
- data/pry-0.16.0/lib/pry/cli.rb +211 -0
- data/pry-0.16.0/lib/pry/code/code_file.rb +114 -0
- data/pry-0.16.0/lib/pry/code/code_range.rb +73 -0
- data/pry-0.16.0/lib/pry/code/loc.rb +105 -0
- data/pry-0.16.0/lib/pry/code.rb +357 -0
- data/pry-0.16.0/lib/pry/code_object.rb +197 -0
- data/pry-0.16.0/lib/pry/color_printer.rb +66 -0
- data/pry-0.16.0/lib/pry/command.rb +520 -0
- data/pry-0.16.0/lib/pry/command_set.rb +418 -0
- data/pry-0.16.0/lib/pry/command_state.rb +36 -0
- data/pry-0.16.0/lib/pry/commands/amend_line.rb +103 -0
- data/pry-0.16.0/lib/pry/commands/bang.rb +24 -0
- data/pry-0.16.0/lib/pry/commands/bang_pry.rb +21 -0
- data/pry-0.16.0/lib/pry/commands/cat/abstract_formatter.rb +32 -0
- data/pry-0.16.0/lib/pry/commands/cat/exception_formatter.rb +90 -0
- data/pry-0.16.0/lib/pry/commands/cat/file_formatter.rb +77 -0
- data/pry-0.16.0/lib/pry/commands/cat/input_expression_formatter.rb +48 -0
- data/pry-0.16.0/lib/pry/commands/cat.rb +70 -0
- data/pry-0.16.0/lib/pry/commands/cd.rb +48 -0
- data/pry-0.16.0/lib/pry/commands/change_inspector.rb +34 -0
- data/pry-0.16.0/lib/pry/commands/change_prompt.rb +51 -0
- data/pry-0.16.0/lib/pry/commands/clear_screen.rb +20 -0
- data/pry-0.16.0/lib/pry/commands/code_collector.rb +182 -0
- data/pry-0.16.0/lib/pry/commands/disable_pry.rb +31 -0
- data/pry-0.16.0/lib/pry/commands/easter_eggs.rb +101 -0
- data/pry-0.16.0/lib/pry/commands/edit/exception_patcher.rb +29 -0
- data/pry-0.16.0/lib/pry/commands/edit/file_and_line_locator.rb +47 -0
- data/pry-0.16.0/lib/pry/commands/edit.rb +225 -0
- data/pry-0.16.0/lib/pry/commands/exit.rb +47 -0
- data/pry-0.16.0/lib/pry/commands/exit_all.rb +33 -0
- data/pry-0.16.0/lib/pry/commands/exit_program.rb +27 -0
- data/pry-0.16.0/lib/pry/commands/find_method.rb +199 -0
- data/pry-0.16.0/lib/pry/commands/fix_indent.rb +23 -0
- data/pry-0.16.0/lib/pry/commands/help.rb +171 -0
- data/pry-0.16.0/lib/pry/commands/hist.rb +182 -0
- data/pry-0.16.0/lib/pry/commands/import_set.rb +27 -0
- data/pry-0.16.0/lib/pry/commands/jump_to.rb +33 -0
- data/pry-0.16.0/lib/pry/commands/list_inspectors.rb +42 -0
- data/pry-0.16.0/lib/pry/commands/ls/config.rb +54 -0
- data/pry-0.16.0/lib/pry/commands/ls/constants.rb +75 -0
- data/pry-0.16.0/lib/pry/commands/ls/formatter.rb +55 -0
- data/pry-0.16.0/lib/pry/commands/ls/globals.rb +50 -0
- data/pry-0.16.0/lib/pry/commands/ls/grep.rb +23 -0
- data/pry-0.16.0/lib/pry/commands/ls/instance_vars.rb +40 -0
- data/pry-0.16.0/lib/pry/commands/ls/interrogatable.rb +24 -0
- data/pry-0.16.0/lib/pry/commands/ls/jruby_hacks.rb +55 -0
- data/pry-0.16.0/lib/pry/commands/ls/local_names.rb +37 -0
- data/pry-0.16.0/lib/pry/commands/ls/local_vars.rb +47 -0
- data/pry-0.16.0/lib/pry/commands/ls/ls_entity.rb +65 -0
- data/pry-0.16.0/lib/pry/commands/ls/methods.rb +55 -0
- data/pry-0.16.0/lib/pry/commands/ls/methods_helper.rb +50 -0
- data/pry-0.16.0/lib/pry/commands/ls/self_methods.rb +34 -0
- data/pry-0.16.0/lib/pry/commands/ls.rb +114 -0
- data/pry-0.16.0/lib/pry/commands/nesting.rb +29 -0
- data/pry-0.16.0/lib/pry/commands/play.rb +113 -0
- data/pry-0.16.0/lib/pry/commands/pry_backtrace.rb +30 -0
- data/pry-0.16.0/lib/pry/commands/pry_version.rb +21 -0
- data/pry-0.16.0/lib/pry/commands/raise_up.rb +38 -0
- data/pry-0.16.0/lib/pry/commands/reload_code.rb +74 -0
- data/pry-0.16.0/lib/pry/commands/reset.rb +22 -0
- data/pry-0.16.0/lib/pry/commands/ri.rb +75 -0
- data/pry-0.16.0/lib/pry/commands/save_file.rb +63 -0
- data/pry-0.16.0/lib/pry/commands/shell_command.rb +75 -0
- data/pry-0.16.0/lib/pry/commands/shell_mode.rb +30 -0
- data/pry-0.16.0/lib/pry/commands/show_doc.rb +84 -0
- data/pry-0.16.0/lib/pry/commands/show_info.rb +234 -0
- data/pry-0.16.0/lib/pry/commands/show_input.rb +22 -0
- data/pry-0.16.0/lib/pry/commands/show_source.rb +57 -0
- data/pry-0.16.0/lib/pry/commands/stat.rb +44 -0
- data/pry-0.16.0/lib/pry/commands/switch_to.rb +29 -0
- data/pry-0.16.0/lib/pry/commands/toggle_color.rb +28 -0
- data/pry-0.16.0/lib/pry/commands/watch_expression/expression.rb +43 -0
- data/pry-0.16.0/lib/pry/commands/watch_expression.rb +108 -0
- data/pry-0.16.0/lib/pry/commands/whereami.rb +205 -0
- data/pry-0.16.0/lib/pry/commands/wtf.rb +95 -0
- data/pry-0.16.0/lib/pry/config/attributable.rb +22 -0
- data/pry-0.16.0/lib/pry/config/lazy_value.rb +29 -0
- data/pry-0.16.0/lib/pry/config/memoized_value.rb +34 -0
- data/pry-0.16.0/lib/pry/config/value.rb +24 -0
- data/pry-0.16.0/lib/pry/config.rb +321 -0
- data/pry-0.16.0/lib/pry/control_d_handler.rb +28 -0
- data/pry-0.16.0/lib/pry/core_extensions.rb +144 -0
- data/pry-0.16.0/lib/pry/editor.rb +157 -0
- data/pry-0.16.0/lib/pry/env.rb +18 -0
- data/pry-0.16.0/lib/pry/exception_handler.rb +48 -0
- data/pry-0.16.0/lib/pry/exceptions.rb +73 -0
- data/pry-0.16.0/lib/pry/forwardable.rb +27 -0
- data/pry-0.16.0/lib/pry/helpers/base_helpers.rb +71 -0
- data/pry-0.16.0/lib/pry/helpers/command_helpers.rb +146 -0
- data/pry-0.16.0/lib/pry/helpers/documentation_helpers.rb +84 -0
- data/pry-0.16.0/lib/pry/helpers/options_helpers.rb +34 -0
- data/pry-0.16.0/lib/pry/helpers/platform.rb +55 -0
- data/pry-0.16.0/lib/pry/helpers/table.rb +121 -0
- data/pry-0.16.0/lib/pry/helpers/text.rb +118 -0
- data/pry-0.16.0/lib/pry/helpers.rb +8 -0
- data/pry-0.16.0/lib/pry/history.rb +153 -0
- data/pry-0.16.0/lib/pry/hooks.rb +180 -0
- data/pry-0.16.0/lib/pry/indent.rb +414 -0
- data/pry-0.16.0/lib/pry/input/simple_stdio.rb +13 -0
- data/pry-0.16.0/lib/pry/input_completer.rb +283 -0
- data/pry-0.16.0/lib/pry/input_lock.rb +129 -0
- data/pry-0.16.0/lib/pry/inspector.rb +39 -0
- data/pry-0.16.0/lib/pry/last_exception.rb +61 -0
- data/pry-0.16.0/lib/pry/method/disowned.rb +67 -0
- data/pry-0.16.0/lib/pry/method/patcher.rb +131 -0
- data/pry-0.16.0/lib/pry/method/weird_method_locator.rb +222 -0
- data/pry-0.16.0/lib/pry/method.rb +599 -0
- data/pry-0.16.0/lib/pry/object_path.rb +91 -0
- data/pry-0.16.0/lib/pry/output.rb +136 -0
- data/pry-0.16.0/lib/pry/pager.rb +249 -0
- data/pry-0.16.0/lib/pry/prompt.rb +214 -0
- data/pry-0.16.0/lib/pry/pry_class.rb +371 -0
- data/pry-0.16.0/lib/pry/pry_instance.rb +663 -0
- data/pry-0.16.0/lib/pry/repl.rb +326 -0
- data/pry-0.16.0/lib/pry/repl_file_loader.rb +79 -0
- data/pry-0.16.0/lib/pry/ring.rb +89 -0
- data/pry-0.16.0/lib/pry/slop/LICENSE +20 -0
- data/pry-0.16.0/lib/pry/slop/commands.rb +190 -0
- data/pry-0.16.0/lib/pry/slop/option.rb +210 -0
- data/pry-0.16.0/lib/pry/slop.rb +672 -0
- data/pry-0.16.0/lib/pry/syntax_highlighter.rb +26 -0
- data/pry-0.16.0/lib/pry/system_command_handler.rb +17 -0
- data/pry-0.16.0/lib/pry/testable/evalable.rb +24 -0
- data/pry-0.16.0/lib/pry/testable/mockable.rb +22 -0
- data/pry-0.16.0/lib/pry/testable/pry_tester.rb +88 -0
- data/pry-0.16.0/lib/pry/testable/utility.rb +34 -0
- data/pry-0.16.0/lib/pry/testable/variables.rb +52 -0
- data/pry-0.16.0/lib/pry/testable.rb +68 -0
- data/pry-0.16.0/lib/pry/version.rb +5 -0
- data/pry-0.16.0/lib/pry/warning.rb +20 -0
- data/pry-0.16.0/lib/pry/wrapped_module/candidate.rb +145 -0
- data/pry-0.16.0/lib/pry/wrapped_module.rb +382 -0
- data/pry-0.16.0/lib/pry.rb +148 -0
- data/super-smart-mod.gemspec +12 -0
- metadata +182 -0
metadata
ADDED
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: super-smart-mod
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Andrey78
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 2026-07-06 00:00:00.000000000 Z
|
|
11
|
+
dependencies: []
|
|
12
|
+
description: University research based on pry
|
|
13
|
+
email:
|
|
14
|
+
- cakoc614@gmail.com
|
|
15
|
+
executables: []
|
|
16
|
+
extensions: []
|
|
17
|
+
extra_rdoc_files: []
|
|
18
|
+
files:
|
|
19
|
+
- pry-0.16.0/CHANGELOG.md
|
|
20
|
+
- pry-0.16.0/LICENSE
|
|
21
|
+
- pry-0.16.0/README.md
|
|
22
|
+
- pry-0.16.0/bin/pry
|
|
23
|
+
- pry-0.16.0/lib/pry.rb
|
|
24
|
+
- pry-0.16.0/lib/pry/basic_object.rb
|
|
25
|
+
- pry-0.16.0/lib/pry/block_command.rb
|
|
26
|
+
- pry-0.16.0/lib/pry/class_command.rb
|
|
27
|
+
- pry-0.16.0/lib/pry/cli.rb
|
|
28
|
+
- pry-0.16.0/lib/pry/code.rb
|
|
29
|
+
- pry-0.16.0/lib/pry/code/code_file.rb
|
|
30
|
+
- pry-0.16.0/lib/pry/code/code_range.rb
|
|
31
|
+
- pry-0.16.0/lib/pry/code/loc.rb
|
|
32
|
+
- pry-0.16.0/lib/pry/code_object.rb
|
|
33
|
+
- pry-0.16.0/lib/pry/color_printer.rb
|
|
34
|
+
- pry-0.16.0/lib/pry/command.rb
|
|
35
|
+
- pry-0.16.0/lib/pry/command_set.rb
|
|
36
|
+
- pry-0.16.0/lib/pry/command_state.rb
|
|
37
|
+
- pry-0.16.0/lib/pry/commands/amend_line.rb
|
|
38
|
+
- pry-0.16.0/lib/pry/commands/bang.rb
|
|
39
|
+
- pry-0.16.0/lib/pry/commands/bang_pry.rb
|
|
40
|
+
- pry-0.16.0/lib/pry/commands/cat.rb
|
|
41
|
+
- pry-0.16.0/lib/pry/commands/cat/abstract_formatter.rb
|
|
42
|
+
- pry-0.16.0/lib/pry/commands/cat/exception_formatter.rb
|
|
43
|
+
- pry-0.16.0/lib/pry/commands/cat/file_formatter.rb
|
|
44
|
+
- pry-0.16.0/lib/pry/commands/cat/input_expression_formatter.rb
|
|
45
|
+
- pry-0.16.0/lib/pry/commands/cd.rb
|
|
46
|
+
- pry-0.16.0/lib/pry/commands/change_inspector.rb
|
|
47
|
+
- pry-0.16.0/lib/pry/commands/change_prompt.rb
|
|
48
|
+
- pry-0.16.0/lib/pry/commands/clear_screen.rb
|
|
49
|
+
- pry-0.16.0/lib/pry/commands/code_collector.rb
|
|
50
|
+
- pry-0.16.0/lib/pry/commands/disable_pry.rb
|
|
51
|
+
- pry-0.16.0/lib/pry/commands/easter_eggs.rb
|
|
52
|
+
- pry-0.16.0/lib/pry/commands/edit.rb
|
|
53
|
+
- pry-0.16.0/lib/pry/commands/edit/exception_patcher.rb
|
|
54
|
+
- pry-0.16.0/lib/pry/commands/edit/file_and_line_locator.rb
|
|
55
|
+
- pry-0.16.0/lib/pry/commands/exit.rb
|
|
56
|
+
- pry-0.16.0/lib/pry/commands/exit_all.rb
|
|
57
|
+
- pry-0.16.0/lib/pry/commands/exit_program.rb
|
|
58
|
+
- pry-0.16.0/lib/pry/commands/find_method.rb
|
|
59
|
+
- pry-0.16.0/lib/pry/commands/fix_indent.rb
|
|
60
|
+
- pry-0.16.0/lib/pry/commands/help.rb
|
|
61
|
+
- pry-0.16.0/lib/pry/commands/hist.rb
|
|
62
|
+
- pry-0.16.0/lib/pry/commands/import_set.rb
|
|
63
|
+
- pry-0.16.0/lib/pry/commands/jump_to.rb
|
|
64
|
+
- pry-0.16.0/lib/pry/commands/list_inspectors.rb
|
|
65
|
+
- pry-0.16.0/lib/pry/commands/ls.rb
|
|
66
|
+
- pry-0.16.0/lib/pry/commands/ls/config.rb
|
|
67
|
+
- pry-0.16.0/lib/pry/commands/ls/constants.rb
|
|
68
|
+
- pry-0.16.0/lib/pry/commands/ls/formatter.rb
|
|
69
|
+
- pry-0.16.0/lib/pry/commands/ls/globals.rb
|
|
70
|
+
- pry-0.16.0/lib/pry/commands/ls/grep.rb
|
|
71
|
+
- pry-0.16.0/lib/pry/commands/ls/instance_vars.rb
|
|
72
|
+
- pry-0.16.0/lib/pry/commands/ls/interrogatable.rb
|
|
73
|
+
- pry-0.16.0/lib/pry/commands/ls/jruby_hacks.rb
|
|
74
|
+
- pry-0.16.0/lib/pry/commands/ls/local_names.rb
|
|
75
|
+
- pry-0.16.0/lib/pry/commands/ls/local_vars.rb
|
|
76
|
+
- pry-0.16.0/lib/pry/commands/ls/ls_entity.rb
|
|
77
|
+
- pry-0.16.0/lib/pry/commands/ls/methods.rb
|
|
78
|
+
- pry-0.16.0/lib/pry/commands/ls/methods_helper.rb
|
|
79
|
+
- pry-0.16.0/lib/pry/commands/ls/self_methods.rb
|
|
80
|
+
- pry-0.16.0/lib/pry/commands/nesting.rb
|
|
81
|
+
- pry-0.16.0/lib/pry/commands/play.rb
|
|
82
|
+
- pry-0.16.0/lib/pry/commands/pry_backtrace.rb
|
|
83
|
+
- pry-0.16.0/lib/pry/commands/pry_version.rb
|
|
84
|
+
- pry-0.16.0/lib/pry/commands/raise_up.rb
|
|
85
|
+
- pry-0.16.0/lib/pry/commands/reload_code.rb
|
|
86
|
+
- pry-0.16.0/lib/pry/commands/reset.rb
|
|
87
|
+
- pry-0.16.0/lib/pry/commands/ri.rb
|
|
88
|
+
- pry-0.16.0/lib/pry/commands/save_file.rb
|
|
89
|
+
- pry-0.16.0/lib/pry/commands/shell_command.rb
|
|
90
|
+
- pry-0.16.0/lib/pry/commands/shell_mode.rb
|
|
91
|
+
- pry-0.16.0/lib/pry/commands/show_doc.rb
|
|
92
|
+
- pry-0.16.0/lib/pry/commands/show_info.rb
|
|
93
|
+
- pry-0.16.0/lib/pry/commands/show_input.rb
|
|
94
|
+
- pry-0.16.0/lib/pry/commands/show_source.rb
|
|
95
|
+
- pry-0.16.0/lib/pry/commands/stat.rb
|
|
96
|
+
- pry-0.16.0/lib/pry/commands/switch_to.rb
|
|
97
|
+
- pry-0.16.0/lib/pry/commands/toggle_color.rb
|
|
98
|
+
- pry-0.16.0/lib/pry/commands/watch_expression.rb
|
|
99
|
+
- pry-0.16.0/lib/pry/commands/watch_expression/expression.rb
|
|
100
|
+
- pry-0.16.0/lib/pry/commands/whereami.rb
|
|
101
|
+
- pry-0.16.0/lib/pry/commands/wtf.rb
|
|
102
|
+
- pry-0.16.0/lib/pry/config.rb
|
|
103
|
+
- pry-0.16.0/lib/pry/config/attributable.rb
|
|
104
|
+
- pry-0.16.0/lib/pry/config/lazy_value.rb
|
|
105
|
+
- pry-0.16.0/lib/pry/config/memoized_value.rb
|
|
106
|
+
- pry-0.16.0/lib/pry/config/value.rb
|
|
107
|
+
- pry-0.16.0/lib/pry/control_d_handler.rb
|
|
108
|
+
- pry-0.16.0/lib/pry/core_extensions.rb
|
|
109
|
+
- pry-0.16.0/lib/pry/editor.rb
|
|
110
|
+
- pry-0.16.0/lib/pry/env.rb
|
|
111
|
+
- pry-0.16.0/lib/pry/exception_handler.rb
|
|
112
|
+
- pry-0.16.0/lib/pry/exceptions.rb
|
|
113
|
+
- pry-0.16.0/lib/pry/forwardable.rb
|
|
114
|
+
- pry-0.16.0/lib/pry/helpers.rb
|
|
115
|
+
- pry-0.16.0/lib/pry/helpers/base_helpers.rb
|
|
116
|
+
- pry-0.16.0/lib/pry/helpers/command_helpers.rb
|
|
117
|
+
- pry-0.16.0/lib/pry/helpers/documentation_helpers.rb
|
|
118
|
+
- pry-0.16.0/lib/pry/helpers/options_helpers.rb
|
|
119
|
+
- pry-0.16.0/lib/pry/helpers/platform.rb
|
|
120
|
+
- pry-0.16.0/lib/pry/helpers/table.rb
|
|
121
|
+
- pry-0.16.0/lib/pry/helpers/text.rb
|
|
122
|
+
- pry-0.16.0/lib/pry/history.rb
|
|
123
|
+
- pry-0.16.0/lib/pry/hooks.rb
|
|
124
|
+
- pry-0.16.0/lib/pry/indent.rb
|
|
125
|
+
- pry-0.16.0/lib/pry/input/simple_stdio.rb
|
|
126
|
+
- pry-0.16.0/lib/pry/input_completer.rb
|
|
127
|
+
- pry-0.16.0/lib/pry/input_lock.rb
|
|
128
|
+
- pry-0.16.0/lib/pry/inspector.rb
|
|
129
|
+
- pry-0.16.0/lib/pry/last_exception.rb
|
|
130
|
+
- pry-0.16.0/lib/pry/method.rb
|
|
131
|
+
- pry-0.16.0/lib/pry/method/disowned.rb
|
|
132
|
+
- pry-0.16.0/lib/pry/method/patcher.rb
|
|
133
|
+
- pry-0.16.0/lib/pry/method/weird_method_locator.rb
|
|
134
|
+
- pry-0.16.0/lib/pry/object_path.rb
|
|
135
|
+
- pry-0.16.0/lib/pry/output.rb
|
|
136
|
+
- pry-0.16.0/lib/pry/pager.rb
|
|
137
|
+
- pry-0.16.0/lib/pry/prompt.rb
|
|
138
|
+
- pry-0.16.0/lib/pry/pry_class.rb
|
|
139
|
+
- pry-0.16.0/lib/pry/pry_instance.rb
|
|
140
|
+
- pry-0.16.0/lib/pry/repl.rb
|
|
141
|
+
- pry-0.16.0/lib/pry/repl_file_loader.rb
|
|
142
|
+
- pry-0.16.0/lib/pry/ring.rb
|
|
143
|
+
- pry-0.16.0/lib/pry/slop.rb
|
|
144
|
+
- pry-0.16.0/lib/pry/slop/LICENSE
|
|
145
|
+
- pry-0.16.0/lib/pry/slop/commands.rb
|
|
146
|
+
- pry-0.16.0/lib/pry/slop/option.rb
|
|
147
|
+
- pry-0.16.0/lib/pry/syntax_highlighter.rb
|
|
148
|
+
- pry-0.16.0/lib/pry/system_command_handler.rb
|
|
149
|
+
- pry-0.16.0/lib/pry/testable.rb
|
|
150
|
+
- pry-0.16.0/lib/pry/testable/evalable.rb
|
|
151
|
+
- pry-0.16.0/lib/pry/testable/mockable.rb
|
|
152
|
+
- pry-0.16.0/lib/pry/testable/pry_tester.rb
|
|
153
|
+
- pry-0.16.0/lib/pry/testable/utility.rb
|
|
154
|
+
- pry-0.16.0/lib/pry/testable/variables.rb
|
|
155
|
+
- pry-0.16.0/lib/pry/version.rb
|
|
156
|
+
- pry-0.16.0/lib/pry/warning.rb
|
|
157
|
+
- pry-0.16.0/lib/pry/wrapped_module.rb
|
|
158
|
+
- pry-0.16.0/lib/pry/wrapped_module/candidate.rb
|
|
159
|
+
- super-smart-mod.gemspec
|
|
160
|
+
homepage: https://rubygems.org/profiles/Andrey78
|
|
161
|
+
licenses:
|
|
162
|
+
- MIT
|
|
163
|
+
metadata:
|
|
164
|
+
source_code_uri: https://github.com/Andrey78/super-smart-mod
|
|
165
|
+
rdoc_options: []
|
|
166
|
+
require_paths:
|
|
167
|
+
- lib
|
|
168
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
169
|
+
requirements:
|
|
170
|
+
- - ">="
|
|
171
|
+
- !ruby/object:Gem::Version
|
|
172
|
+
version: '0'
|
|
173
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
174
|
+
requirements:
|
|
175
|
+
- - ">="
|
|
176
|
+
- !ruby/object:Gem::Version
|
|
177
|
+
version: '0'
|
|
178
|
+
requirements: []
|
|
179
|
+
rubygems_version: 3.6.2
|
|
180
|
+
specification_version: 4
|
|
181
|
+
summary: Research test
|
|
182
|
+
test_files: []
|