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