irbtools 4.0.11 → 4.1.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 +4 -4
- data/CHANGELOG.md +217 -159
- data/Gemfile.lock +36 -32
- data/README.md +88 -87
- data/irbtools.gemspec +1 -1
- data/lib/irbtools/commands/code.rb +29 -16
- data/lib/irbtools/commands/howtocall.rb +29 -16
- data/lib/irbtools/commands/look.rb +13 -10
- data/lib/irbtools/commands/shadow.rb +13 -9
- data/lib/irbtools/commands/sys.rb +9 -14
- data/lib/irbtools/configure.rb +1 -0
- data/lib/irbtools/implementation.rb +5 -12
- data/lib/irbtools/version.rb +1 -1
- data/lib/irbtools.rb +0 -1
- data/spec/irbtools_commands_spec.rb +6 -6
- metadata +7 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 44ddc691d0919493e5f248a432a49475aa785b2363246835909c9d2a201fd752
|
4
|
+
data.tar.gz: 3a2bef81550794be628233a9e93ee0d5590c2d116d9ff2d21d98fa7bc715f5a8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6fbc8f387a7ef18032f3d33bd2d4583e4d71a74fa54b02f1e8f905694c0a9dada6ec160a3fa63ab968370e2a2f311e7a327ba556fd787929d3e2823df1b68e4b
|
7
|
+
data.tar.gz: 6b2eecdb00ebe4000972bc70939f542127d1e8724b411f45dafcdfba91afc0bfbcd988f00b980a6fbf24cbe571d82a8b59c26df3100de7ec94e739a88dd1847d
|
data/CHANGELOG.md
CHANGED
@@ -1,293 +1,351 @@
|
|
1
1
|
# Irbtools Changelog
|
2
2
|
|
3
|
+
## 4.1.1
|
4
|
+
|
5
|
+
- Loosen IRB dependency to allow IRB 1.15
|
6
|
+
|
7
|
+
## 4.1.0
|
8
|
+
|
9
|
+
- Fix command loading (was broken in previous version)
|
10
|
+
- Minor changes to command argument parsing
|
11
|
+
- Set required IRB to 1.13.0
|
12
|
+
|
3
13
|
## 4.0.11
|
4
14
|
|
5
|
-
|
15
|
+
- Loosen IRB dependency to allow IRB 1.14
|
6
16
|
|
7
17
|
## 4.0.10
|
8
18
|
|
9
|
-
|
19
|
+
- Loosen IRB dependency to allow IRB 1.13, fixes #57
|
10
20
|
|
11
21
|
## 4.0.9
|
12
22
|
|
13
|
-
|
23
|
+
- Fix loading command `Base` class and require IRB 1.12 to make sure it is available
|
14
24
|
|
15
25
|
## 4.0.8
|
16
26
|
|
17
|
-
|
18
|
-
|
19
|
-
|
27
|
+
- Require IRB 1.11
|
28
|
+
- Fix "NameError: uninitialized constant IRB::ExtendCommand::Nop"
|
29
|
+
- Bump core_docs gem
|
20
30
|
|
21
31
|
## 4.0.7
|
22
32
|
|
23
|
-
|
33
|
+
- Allow clipboard gem v2
|
24
34
|
|
25
35
|
## 4.0.6
|
26
36
|
|
27
|
-
|
37
|
+
- Bump FancyIRB to close #56
|
28
38
|
|
29
39
|
## 4.0.5
|
30
40
|
|
31
|
-
|
41
|
+
- Bump IRB and FancyIRB
|
32
42
|
|
33
43
|
## 4.0.4
|
34
44
|
|
35
|
-
|
45
|
+
- Loosen IRB dependency
|
36
46
|
|
37
47
|
## 4.0.3
|
38
48
|
|
39
|
-
|
49
|
+
- code / howtocall commands: Support question mark / exclamation mark methods
|
40
50
|
|
41
51
|
## 4.0.2
|
42
52
|
|
43
|
-
|
53
|
+
- Bump interactive_editor gem (Ruby 3.2 compatibility)
|
44
54
|
|
45
55
|
## 4.0.1
|
46
56
|
|
47
|
-
|
57
|
+
- Bump ruby_engine gem
|
48
58
|
|
49
59
|
## 4.0.0
|
50
60
|
|
51
|
-
|
52
|
-
|
61
|
+
- Requires IRB 1.6 (Ruby 3.2 bundles IRB 1.6.2)
|
62
|
+
- Requires Ruby 3.0
|
53
63
|
|
54
|
-
|
55
|
-
* Drop binding.repl gem since it was only needed for older Rubies
|
56
|
-
* Drop ori gem, since IRB now has `show_doc`
|
57
|
-
* Drop RubyInfo
|
64
|
+
- Remove a bunch of gems:
|
58
65
|
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
* Remove bond (outdated)
|
63
|
-
* Leave binding_of_caller optional
|
66
|
+
- Drop binding.repl gem since it was only needed for older Rubies
|
67
|
+
- Drop ori gem, since IRB now has `show_doc`
|
68
|
+
- Drop RubyInfo
|
64
69
|
|
65
|
-
|
66
|
-
* Add `$` command to directly call system
|
70
|
+
- Retire irbtools-more:
|
67
71
|
|
68
|
-
|
69
|
-
|
70
|
-
|
72
|
+
- Move looksee to core irbtools
|
73
|
+
- Move core_docs to core irbtools
|
74
|
+
- Remove bond (outdated)
|
75
|
+
- Leave binding_of_caller optional
|
76
|
+
|
77
|
+
- Add command wrappers for code, howtocall, looksee, shadow
|
78
|
+
- Add `$` command to directly call system
|
79
|
+
|
80
|
+
- Version bumps: looksee, os, methodfinder, code, core_docs, debugging
|
81
|
+
- Alias IRB's ls to ils (fixes #53)
|
82
|
+
- Remove support for RIPL repl (outdated)
|
71
83
|
|
72
84
|
## 3.0.5
|
73
|
-
|
85
|
+
|
86
|
+
- Bump methodfinder dependency & update usage (fixes #52)
|
74
87
|
|
75
88
|
## 3.0.4
|
76
|
-
|
89
|
+
|
90
|
+
- Loosen Ruby dependency to allow Ruby 3.0
|
77
91
|
|
78
92
|
## 3.0.3
|
79
|
-
|
80
|
-
|
93
|
+
|
94
|
+
- Workaround a HIRB issue for newer IRBs (fixes #48)
|
95
|
+
- Workaround ORI issue for newer IRBs
|
81
96
|
|
82
97
|
## 3.0.2
|
83
|
-
|
98
|
+
|
99
|
+
- Bump wirb to ensure Ruby 2.7 compatibility
|
84
100
|
|
85
101
|
## 3.0.1
|
86
|
-
|
102
|
+
|
103
|
+
- Bump fancy_irb to ensure Ruby 2.7 compatiblity
|
87
104
|
|
88
105
|
## 3.0.0
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
106
|
+
|
107
|
+
- Make IRB itself a dependency (default gem)
|
108
|
+
- Move: "Every day… IRB" into its own git repository
|
109
|
+
- https://github.com/janlelis/every_day_irb
|
110
|
+
- Replace instance and method_locator gems with new object_shadow gem
|
111
|
+
- Improve README
|
112
|
+
- Version bump code, clipboard, and methodfinder
|
95
113
|
|
96
114
|
## 2.2.2
|
97
|
-
|
115
|
+
|
116
|
+
- Remove Rails WIRB loading hack (no longer necessary)
|
98
117
|
|
99
118
|
## 2.2.1
|
100
|
-
|
101
|
-
|
119
|
+
|
120
|
+
- Allow os gem to be below 1.0
|
121
|
+
- Do not use binding.repl gem if Ruby version is at least 2.5
|
102
122
|
|
103
123
|
## 2.2.0
|
104
|
-
|
124
|
+
|
125
|
+
- Remove info, version, engine, and os methods. Use RubyInfo, RubyVersion, RubyEngine, and OS instead (fixes #40)
|
105
126
|
|
106
127
|
## 2.1.0
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
128
|
+
|
129
|
+
- Improve Rails compatibility
|
130
|
+
- Do not load instance gem in the context of Rails
|
131
|
+
- Make sure to actually require "irb" before using it
|
132
|
+
- Use terrible hack to load Wirb in context of Rails
|
133
|
+
- Relax paint dependency (allows usage of paint >= 2.0)
|
134
|
+
- Require new versions of fancy_irb, clipboard, os
|
135
|
+
- Set abort_on_exception to true for late threads (early threads do this implicitly via join)
|
114
136
|
|
115
137
|
## 2.0.1
|
116
|
-
|
138
|
+
|
139
|
+
- Remove g gem
|
117
140
|
|
118
141
|
## 2.0.0
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
142
|
+
|
143
|
+
- Use Wirb 2.0 and FancyIrb 1.0
|
144
|
+
- Drop support for Ruby 1
|
145
|
+
- Simplify starting from code via: require 'irbtools/binding'
|
146
|
+
- Rename method to show a method's source to: code
|
147
|
+
- Add instance gem
|
148
|
+
- Remove code organization gems (boson + alias)
|
149
|
+
- Don't add '.' to the load path, use rr (require_relative) instead
|
150
|
+
- Improve loading order of libraries
|
151
|
+
- Remove aliases for Irbtools configuration
|
152
|
+
- Integrate irbtools-more into irbtools main repo
|
153
|
+
- EveryDayIrb now gets released on its own, instead with every new irbtools version
|
154
|
+
- Improve documentation in Readme
|
131
155
|
|
132
156
|
## 1.7.1
|
133
|
-
|
157
|
+
|
158
|
+
- bump binding.repl, hirb, methodfinder
|
134
159
|
|
135
160
|
## 1.7.0
|
136
|
-
|
137
|
-
|
138
|
-
|
161
|
+
|
162
|
+
- bump boson, boson-more, binding.repl
|
163
|
+
- required ruby version: 1.9.3
|
164
|
+
- remove awesome_print
|
139
165
|
|
140
166
|
## 1.6.1
|
141
|
-
|
142
|
-
|
167
|
+
|
168
|
+
- don't load debugging/repl by default
|
169
|
+
- rename re method to engine and rv to version
|
143
170
|
|
144
171
|
## 1.6.0
|
145
|
-
|
146
|
-
|
147
|
-
|
172
|
+
|
173
|
+
- remove zucker dependency, but add debugging, ruby_version, ruby_engine, ruby_info and os gem
|
174
|
+
- configure binding.repl to load irb, not pry
|
175
|
+
- bump binding.repl, paint, wirb
|
148
176
|
|
149
177
|
## 1.5.1
|
150
|
-
|
151
|
-
|
178
|
+
|
179
|
+
- include binding.repl gem
|
180
|
+
- bump coderay, awesome_print, method_source, wirb
|
152
181
|
|
153
182
|
## 1.5.0
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
183
|
+
|
184
|
+
- update debundle hack
|
185
|
+
- load less zucker libraries
|
186
|
+
- add alias gem
|
187
|
+
- finaly load boson correctly (but don't load any boson plugin, yet), also depend on boson-more
|
188
|
+
- version bumps (zucker, clipboard, paint, hirb, wirb, ap, coderay, g)
|
159
189
|
|
160
190
|
## 1.4.0
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
191
|
+
|
192
|
+
- every_day_irb is now a module that extends self
|
193
|
+
- specs for most of every_day_irb's functionality
|
194
|
+
- add helper method for paging output with hirb: page
|
195
|
+
- version bumps, including wirb and fancy_irb
|
196
|
+
- remove sketches dependency, it's a great gem, but very similar to interactive_editor
|
197
|
+
- Object#mlp alias for method_lookup_path
|
167
198
|
|
168
199
|
## 1.3.0 == 1.2.3
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
200
|
+
|
201
|
+
- add modern debundle note
|
202
|
+
- remove loading of .railsrc
|
203
|
+
- remove dbg method
|
204
|
+
- version bumps
|
173
205
|
|
174
206
|
## 1.2.2
|
175
|
-
|
176
|
-
|
207
|
+
|
208
|
+
- fix errors when inspect returns nil (e.g. CarrierWave uploaders)
|
209
|
+
- create legacy branch for 1.8.7 support
|
177
210
|
|
178
211
|
## 1.2.1
|
179
|
-
|
180
|
-
|
212
|
+
|
213
|
+
- fix newboson loader issue
|
214
|
+
- minor version bumps
|
181
215
|
|
182
216
|
## 1.2.0
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
217
|
+
|
218
|
+
- version bumps: hirb, awesome_print, coderay, g, methodfinder, method_source
|
219
|
+
- remove RVM helpers: Sorry, were too buggy...
|
220
|
+
- fix/improve 'cd' helper method
|
221
|
+
- improve readme
|
222
|
+
- move looksee gem to irbtools-more
|
223
|
+
- more little tweaks
|
189
224
|
|
190
225
|
## 1.1.1
|
191
|
-
|
226
|
+
|
227
|
+
- fix the Ripl.after_rc bug
|
192
228
|
|
193
229
|
## 1.1.0
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
230
|
+
|
231
|
+
- fix hirb loading/unicode issue + colorize tables (thanks to halan)
|
232
|
+
- colorize paged wirb output
|
233
|
+
- include method locator gem (improved ancestors)
|
234
|
+
- include looksee gem (aliased as Object#l/Object#ll and Object#edit)
|
235
|
+
- include method source gem (Object#src)
|
236
|
+
- small tweaks...
|
200
237
|
|
201
238
|
## 1.0.6
|
202
|
-
|
203
|
-
|
204
|
-
|
239
|
+
|
240
|
+
- add possibility to modify library callbacks without removing the library by using: replace_library_callback or add_library_callback
|
241
|
+
- fix hirb dependency issue
|
242
|
+
- readme improvements
|
205
243
|
|
206
244
|
## 1.0.5
|
207
|
-
|
245
|
+
|
246
|
+
- use paint gem for terminal colors
|
208
247
|
|
209
248
|
## 1.0.4
|
210
|
-
|
211
|
-
|
249
|
+
|
250
|
+
- improve error-handling
|
251
|
+
- fix broken loading of boson + interactive_editor
|
212
252
|
|
213
253
|
## 1.0.3
|
214
|
-
|
254
|
+
|
255
|
+
- fix post-install banner typo
|
215
256
|
|
216
257
|
## 1.0.2
|
217
|
-
|
258
|
+
|
259
|
+
- version bumps for zucker (rbx compatible) and wirb (improved generic object-description highlighting)
|
218
260
|
|
219
261
|
## 1.0.1
|
220
|
-
|
262
|
+
|
263
|
+
- add missing require 'rbconfig'
|
221
264
|
|
222
265
|
## 1.0.0
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
266
|
+
|
267
|
+
- gemify general helpers/rvm stuff ("every_day_irb", "rvm_loader")
|
268
|
+
- 6 different loading schemas: start, thread, autoload, sub_session, late, late_thread
|
269
|
+
- load almost every feature via threads
|
270
|
+
- don't use zucker/alias_for, autload zucker/env (except zucker/os) for performance reasons
|
271
|
+
- add irbtools/minimal mode for starting Irbtools without the default set of libraries
|
272
|
+
- replace RV and RE with rv and re
|
229
273
|
|
230
274
|
## 0.8.8
|
231
|
-
|
232
|
-
|
233
|
-
|
275
|
+
|
276
|
+
- fix 0.8.7 file permissions
|
277
|
+
- add methodfinder gem
|
278
|
+
- don't depend on guessmethod anymore
|
234
279
|
|
235
280
|
## 0.8.7
|
236
|
-
|
237
|
-
|
238
|
-
|
281
|
+
|
282
|
+
- fix railsrc loading
|
283
|
+
- add ori gem for nice Object#ri calling
|
284
|
+
- minor tweaks
|
239
285
|
|
240
286
|
## 0.8.6
|
241
|
-
|
242
|
-
|
287
|
+
|
288
|
+
- windows support
|
289
|
+
- update hirb + activate unicode-drawn tables
|
243
290
|
|
244
291
|
## 0.8.5
|
245
|
-
|
292
|
+
|
293
|
+
- rails related fixes
|
246
294
|
|
247
295
|
## 0.8.4
|
248
|
-
|
296
|
+
|
297
|
+
- now using wirb instead of wirble
|
249
298
|
|
250
299
|
## 0.8.3
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
300
|
+
|
301
|
+
- improved/added rvm methods (use, gemset, rubies, gemsets)
|
302
|
+
- RVM (Ruby API) constant gets autoloaded
|
303
|
+
- improved cd command
|
304
|
+
- don't load guessmethod by default (it's cool, but not always suited for production)
|
305
|
+
- more small changes
|
256
306
|
|
257
307
|
## 0.8.2
|
258
|
-
|
259
|
-
|
308
|
+
|
309
|
+
- only do irb specific features if in irb (ripl compatibility)
|
310
|
+
- more generic shell_name (in welcome message)
|
260
311
|
|
261
312
|
## 0.8.1
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
313
|
+
|
314
|
+
- rewrote irb_rocket: fancy_irb. No more workarounds needed, anymore.
|
315
|
+
- added sketches gem
|
316
|
+
- customizable welcome message
|
317
|
+
- more little fixes/enhancements
|
266
318
|
|
267
319
|
## 0.8.0
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
320
|
+
|
321
|
+
- added Object#ri method
|
322
|
+
- feature: extension package loading (e.g. irbtools-more)
|
323
|
+
- feature: loading in IRB.conf[:IRB_RC] (loading when a subirb starts, no more guessmethod rails errors)
|
324
|
+
- added rerequire (rrq) and ld load helper
|
272
325
|
|
273
326
|
## 0.7.4
|
274
|
-
|
275
|
-
|
327
|
+
|
328
|
+
- added workaround to use irb_rocket and hirb at the same time (basic hack, e.g. paging does not work)
|
329
|
+
- fixed little VERSION bug
|
276
330
|
|
277
331
|
## 0.7.3
|
278
|
-
|
279
|
-
|
280
|
-
|
332
|
+
|
333
|
+
- refactored file structure and added new Irbtools.add_lib method
|
334
|
+
- load railsrc if executed with rails and Irbtools.railsrc is set
|
335
|
+
- more little fixes
|
281
336
|
|
282
337
|
## 0.7.2
|
283
|
-
|
284
|
-
|
285
|
-
|
338
|
+
|
339
|
+
- fixed Rails 3 bug
|
340
|
+
- added boson gem (command repository)
|
341
|
+
- remember history when resetting or switching ruby version
|
286
342
|
|
287
343
|
## 0.7.1
|
288
|
-
|
344
|
+
|
345
|
+
- added method for starting a debugger
|
289
346
|
|
290
347
|
## 0.7.0
|
291
|
-
* initial release
|
292
348
|
|
293
|
-
|
349
|
+
- initial release
|
350
|
+
|
351
|
+
J-\_-L
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
irbtools (4.0
|
4
|
+
irbtools (4.1.0)
|
5
5
|
clipboard (>= 1.4, < 3.0)
|
6
6
|
code (>= 0.9.4, < 2.0)
|
7
7
|
coderay (~> 1.1)
|
@@ -11,7 +11,7 @@ PATH
|
|
11
11
|
fancy_irb (~> 2.1)
|
12
12
|
hirb (~> 0.7, >= 0.7.3)
|
13
13
|
interactive_editor (~> 0.0, >= 0.0.12)
|
14
|
-
irb (>= 1.
|
14
|
+
irb (>= 1.13.0, < 1.16)
|
15
15
|
looksee (~> 5.0)
|
16
16
|
methodfinder (~> 2.2, >= 2.2.5)
|
17
17
|
object_shadow (~> 1.1)
|
@@ -24,7 +24,7 @@ PATH
|
|
24
24
|
GEM
|
25
25
|
remote: https://rubygems.org/
|
26
26
|
specs:
|
27
|
-
cd (1.0.
|
27
|
+
cd (1.0.2)
|
28
28
|
clipboard (2.0.0)
|
29
29
|
code (0.9.4)
|
30
30
|
coderay (~> 1.1)
|
@@ -32,60 +32,64 @@ GEM
|
|
32
32
|
coderay (1.1.3)
|
33
33
|
core_docs (0.9.11)
|
34
34
|
yard (~> 0.9.11)
|
35
|
+
date (3.4.1)
|
35
36
|
debugging (2.1.0)
|
36
37
|
paint (>= 0.9, < 3.0)
|
37
|
-
diff-lcs (1.5.
|
38
|
+
diff-lcs (1.5.1)
|
38
39
|
every_day_irb (2.2.0)
|
39
40
|
cd (~> 1.0)
|
40
41
|
fancy_irb (2.1.2)
|
41
42
|
irb (>= 1.7, < 2.0)
|
42
43
|
paint (>= 0.9, < 3.0)
|
43
44
|
unicode-display_width (>= 2.5)
|
44
|
-
ffi (1.
|
45
|
+
ffi (1.17.0)
|
45
46
|
hirb (0.7.3)
|
46
47
|
interactive_editor (0.0.12)
|
47
48
|
spoon (~> 0.0.6)
|
48
|
-
io-console (0.
|
49
|
-
irb (1.
|
50
|
-
|
49
|
+
io-console (0.8.0)
|
50
|
+
irb (1.15.2)
|
51
|
+
pp (>= 0.6.0)
|
52
|
+
rdoc (>= 4.0.0)
|
51
53
|
reline (>= 0.4.2)
|
52
54
|
looksee (5.0.0)
|
53
|
-
method_source (1.
|
55
|
+
method_source (1.1.0)
|
54
56
|
methodfinder (2.2.5)
|
55
57
|
object_shadow (1.1.1)
|
56
58
|
os (1.1.4)
|
57
59
|
paint (2.3.0)
|
58
|
-
|
60
|
+
pp (0.6.2)
|
61
|
+
prettyprint
|
62
|
+
prettyprint (0.2.0)
|
63
|
+
psych (5.2.3)
|
64
|
+
date
|
59
65
|
stringio
|
60
|
-
rake (13.
|
61
|
-
rdoc (6.
|
66
|
+
rake (13.2.1)
|
67
|
+
rdoc (6.13.1)
|
62
68
|
psych (>= 4.0.0)
|
63
|
-
reline (0.
|
69
|
+
reline (0.6.1)
|
64
70
|
io-console (~> 0.5)
|
65
|
-
rspec (3.
|
66
|
-
rspec-core (~> 3.
|
67
|
-
rspec-expectations (~> 3.
|
68
|
-
rspec-mocks (~> 3.
|
69
|
-
rspec-core (3.
|
70
|
-
rspec-support (~> 3.
|
71
|
-
rspec-expectations (3.
|
71
|
+
rspec (3.13.0)
|
72
|
+
rspec-core (~> 3.13.0)
|
73
|
+
rspec-expectations (~> 3.13.0)
|
74
|
+
rspec-mocks (~> 3.13.0)
|
75
|
+
rspec-core (3.13.1)
|
76
|
+
rspec-support (~> 3.13.0)
|
77
|
+
rspec-expectations (3.13.3)
|
72
78
|
diff-lcs (>= 1.2.0, < 2.0)
|
73
|
-
rspec-support (~> 3.
|
74
|
-
rspec-mocks (3.
|
79
|
+
rspec-support (~> 3.13.0)
|
80
|
+
rspec-mocks (3.13.1)
|
75
81
|
diff-lcs (>= 1.2.0, < 2.0)
|
76
|
-
rspec-support (~> 3.
|
77
|
-
rspec-support (3.
|
78
|
-
ruby_engine (2.0.
|
79
|
-
ruby_version (1.0.
|
82
|
+
rspec-support (~> 3.13.0)
|
83
|
+
rspec-support (3.13.1)
|
84
|
+
ruby_engine (2.0.3)
|
85
|
+
ruby_version (1.0.3)
|
80
86
|
spoon (0.0.6)
|
81
87
|
ffi
|
82
|
-
stringio (3.1.
|
83
|
-
unicode-display_width (2.
|
84
|
-
webrick (1.7.0)
|
88
|
+
stringio (3.1.6)
|
89
|
+
unicode-display_width (2.6.0)
|
85
90
|
wirb (2.2.2)
|
86
91
|
paint (>= 0.9, < 3.0)
|
87
|
-
yard (0.9.
|
88
|
-
webrick (~> 1.7.0)
|
92
|
+
yard (0.9.37)
|
89
93
|
|
90
94
|
PLATFORMS
|
91
95
|
ruby
|
@@ -97,4 +101,4 @@ DEPENDENCIES
|
|
97
101
|
rspec
|
98
102
|
|
99
103
|
BUNDLED WITH
|
100
|
-
2.
|
104
|
+
2.6.2
|