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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cffab1008edb3639d5fce2734ecf14926a54697288f42c97a19ce3c208e477ca
4
- data.tar.gz: 694e9fb71d0ad7df4a38f8d98a1c1736eb5a599cdf25245f2865235d1cf72cc7
3
+ metadata.gz: 057ccf651fd4fcb5a0b5b9c9e465a22805fd06c3e1807db2d4ecc25164ed4065
4
+ data.tar.gz: 6910623184264bad5962e142b845e48418e99164204e867e14c66eb9a6a8cad9
5
5
  SHA512:
6
- metadata.gz: c10f2cea5ae0feb67c59e30c397eb8cdd2d237057cc436d69a6ea0b05f4e8422108bc12e78383a305d978eb8e5d829b2510c590e2bb6c963d520127c88e2839b
7
- data.tar.gz: 1eb595f7e72512720fab2027c24f27b804c66146e20b73fe0865b8319088b7382e60d3fbd244bfbd400a82fa1a3fcdb27d4f23cc9ee8082ac3332fa701a0d6d3
6
+ metadata.gz: d9005040abdcc670c7d7c786e98eb2d7013fdaf9a10bd701ea0404b7a2c97eba656b2f26831f4acf1826a70eec03eede34c28d80dd1d00b07e9a3b967cfd4eb3
7
+ data.tar.gz: effd68833e3e32a02ec171959fc6ee9c5d94fc10dd19eaba1903fb1f00a654728e1254fdb4d4ca7e489547f216d15574995b3983b926f75c45169223421df8a1
data/.rake_tasks ADDED
@@ -0,0 +1,4 @@
1
+ gem
2
+ gemspec
3
+ install
4
+ spec
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
- * Loosen IRB dependency to allow IRB 1.13, fixes #57
15
+ - Loosen IRB dependency to allow IRB 1.13, fixes #57
6
16
 
7
17
  ## 4.0.9
8
18
 
9
- * Fix loading command `Base` class and require IRB 1.12 to make sure it is available
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
- * Require IRB 1.11
14
- * Fix "NameError: uninitialized constant IRB::ExtendCommand::Nop"
15
- * Bump core_docs gem
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
- * Allow clipboard gem v2
29
+ - Allow clipboard gem v2
20
30
 
21
31
  ## 4.0.6
22
32
 
23
- * Bump FancyIRB to close #56
33
+ - Bump FancyIRB to close #56
24
34
 
25
35
  ## 4.0.5
26
36
 
27
- * Bump IRB and FancyIRB
37
+ - Bump IRB and FancyIRB
28
38
 
29
39
  ## 4.0.4
30
40
 
31
- * Loosen IRB dependency
41
+ - Loosen IRB dependency
32
42
 
33
43
  ## 4.0.3
34
44
 
35
- * code / howtocall commands: Support question mark / exclamation mark methods
45
+ - code / howtocall commands: Support question mark / exclamation mark methods
36
46
 
37
47
  ## 4.0.2
38
48
 
39
- * Bump interactive_editor gem (Ruby 3.2 compatibility)
49
+ - Bump interactive_editor gem (Ruby 3.2 compatibility)
40
50
 
41
51
  ## 4.0.1
42
52
 
43
- * Bump ruby_engine gem
53
+ - Bump ruby_engine gem
44
54
 
45
55
  ## 4.0.0
46
56
 
47
- * Requires IRB 1.6 (Ruby 3.2 bundles IRB 1.6.2)
48
- * Requires Ruby 3.0
57
+ - Requires IRB 1.6 (Ruby 3.2 bundles IRB 1.6.2)
58
+ - Requires Ruby 3.0
49
59
 
50
- * Remove a bunch of gems:
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
- * Retire irbtools-more:
56
- * Move looksee to core irbtools
57
- * Move core_docs to core irbtools
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
- * Add command wrappers for code, howtocall, looksee, shadow
62
- * Add `$` command to directly call system
66
+ - Retire irbtools-more:
63
67
 
64
- * Version bumps: looksee, os, methodfinder, code, core_docs, debugging
65
- * Alias IRB's ls to ils (fixes #53)
66
- * Remove support for RIPL repl (outdated)
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
- * Bump methodfinder dependency & update usage (fixes #52)
81
+
82
+ - Bump methodfinder dependency & update usage (fixes #52)
70
83
 
71
84
  ## 3.0.4
72
- * Loosen Ruby dependency to allow Ruby 3.0
85
+
86
+ - Loosen Ruby dependency to allow Ruby 3.0
73
87
 
74
88
  ## 3.0.3
75
- * Workaround a HIRB issue for newer IRBs (fixes #48)
76
- * Workaround ORI issue for newer IRBs
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
- * Bump wirb to ensure Ruby 2.7 compatibility
94
+
95
+ - Bump wirb to ensure Ruby 2.7 compatibility
80
96
 
81
97
  ## 3.0.1
82
- * Bump fancy_irb to ensure Ruby 2.7 compatiblity
98
+
99
+ - Bump fancy_irb to ensure Ruby 2.7 compatiblity
83
100
 
84
101
  ## 3.0.0
85
- * Make IRB itself a dependency (default gem)
86
- * Move: "Every day… IRB" into its own git repository
87
- * https://github.com/janlelis/every_day_irb
88
- * Replace instance and method_locator gems with new object_shadow gem
89
- * Improve README
90
- * Version bump code, clipboard, and methodfinder
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
- * Remove Rails WIRB loading hack (no longer necessary)
111
+
112
+ - Remove Rails WIRB loading hack (no longer necessary)
94
113
 
95
114
  ## 2.2.1
96
- * Allow os gem to be below 1.0
97
- * Do not use binding.repl gem if Ruby version is at least 2.5
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
- * Remove info, version, engine, and os methods. Use RubyInfo, RubyVersion, RubyEngine, and OS instead (fixes #40)
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
- * Improve Rails compatibility
104
- * Do not load instance gem in the context of Rails
105
- * Make sure to actually require "irb" before using it
106
- * Use terrible hack to load Wirb in context of Rails
107
- * Relax paint dependency (allows usage of paint >= 2.0)
108
- * Require new versions of fancy_irb, clipboard, os
109
- * Set abort_on_exception to true for late threads (early threads do this implicitly via join)
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
- * Remove g gem
134
+
135
+ - Remove g gem
113
136
 
114
137
  ## 2.0.0
115
- * Use Wirb 2.0 and FancyIrb 1.0
116
- * Drop support for Ruby 1
117
- * Simplify starting from code via: require 'irbtools/binding'
118
- * Rename method to show a method's source to: code
119
- * Add instance gem
120
- * Remove code organization gems (boson + alias)
121
- * Don't add '.' to the load path, use rr (require_relative) instead
122
- * Improve loading order of libraries
123
- * Remove aliases for Irbtools configuration
124
- * Integrate irbtools-more into irbtools main repo
125
- * EveryDayIrb now gets released on its own, instead with every new irbtools version
126
- * Improve documentation in Readme
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
- * bump binding.repl, hirb, methodfinder
153
+
154
+ - bump binding.repl, hirb, methodfinder
130
155
 
131
156
  ## 1.7.0
132
- * bump boson, boson-more, binding.repl
133
- * required ruby version: 1.9.3
134
- * remove awesome_print
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
- * don't load debugging/repl by default
138
- * rename re method to engine and rv to version
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
- * remove zucker dependency, but add debugging, ruby_version, ruby_engine, ruby_info and os gem
142
- * configure binding.repl to load irb, not pry
143
- * bump binding.repl, paint, wirb
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
- * include binding.repl gem
147
- * bump coderay, awesome_print, method_source, wirb
174
+
175
+ - include binding.repl gem
176
+ - bump coderay, awesome_print, method_source, wirb
148
177
 
149
178
  ## 1.5.0
150
- * update debundle hack
151
- * load less zucker libraries
152
- * add alias gem
153
- * finaly load boson correctly (but don't load any boson plugin, yet), also depend on boson-more
154
- * version bumps (zucker, clipboard, paint, hirb, wirb, ap, coderay, g)
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
- * every_day_irb is now a module that extends self
158
- * specs for most of every_day_irb's functionality
159
- * add helper method for paging output with hirb: page
160
- * version bumps, including wirb and fancy_irb
161
- * remove sketches dependency, it's a great gem, but very similar to interactive_editor
162
- * Object#mlp alias for method_lookup_path
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
- * add modern debundle note
166
- * remove loading of .railsrc
167
- * remove dbg method
168
- * version bumps
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
- * fix errors when inspect returns nil (e.g. CarrierWave uploaders)
172
- * create legacy branch for 1.8.7 support
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
- * fix newboson loader issue
176
- * minor version bumps
208
+
209
+ - fix newboson loader issue
210
+ - minor version bumps
177
211
 
178
212
  ## 1.2.0
179
- * version bumps: hirb, awesome_print, coderay, g, methodfinder, method_source
180
- * remove RVM helpers: Sorry, were too buggy...
181
- * fix/improve 'cd' helper method
182
- * improve readme
183
- * move looksee gem to irbtools-more
184
- * more little tweaks
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
- * fix the Ripl.after_rc bug
222
+
223
+ - fix the Ripl.after_rc bug
188
224
 
189
225
  ## 1.1.0
190
- * fix hirb loading/unicode issue + colorize tables (thanks to halan)
191
- * colorize paged wirb output
192
- * include method locator gem (improved ancestors)
193
- * include looksee gem (aliased as Object#l/Object#ll and Object#edit)
194
- * include method source gem (Object#src)
195
- * small tweaks...
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
- * add possibility to modify library callbacks without removing the library by using: replace_library_callback or add_library_callback
199
- * fix hirb dependency issue
200
- * readme improvements
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
- * use paint gem for terminal colors
241
+
242
+ - use paint gem for terminal colors
204
243
 
205
244
  ## 1.0.4
206
- * improve error-handling
207
- * fix broken loading of boson + interactive_editor
245
+
246
+ - improve error-handling
247
+ - fix broken loading of boson + interactive_editor
208
248
 
209
249
  ## 1.0.3
210
- * fix post-install banner typo
250
+
251
+ - fix post-install banner typo
211
252
 
212
253
  ## 1.0.2
213
- * version bumps for zucker (rbx compatible) and wirb (improved generic object-description highlighting)
254
+
255
+ - version bumps for zucker (rbx compatible) and wirb (improved generic object-description highlighting)
214
256
 
215
257
  ## 1.0.1
216
- * add missing require 'rbconfig'
258
+
259
+ - add missing require 'rbconfig'
217
260
 
218
261
  ## 1.0.0
219
- * gemify general helpers/rvm stuff ("every_day_irb", "rvm_loader")
220
- * 6 different loading schemas: start, thread, autoload, sub_session, late, late_thread
221
- * load almost every feature via threads
222
- * don't use zucker/alias_for, autload zucker/env (except zucker/os) for performance reasons
223
- * add irbtools/minimal mode for starting Irbtools without the default set of libraries
224
- * replace RV and RE with rv and re
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
- * fix 0.8.7 file permissions
228
- * add methodfinder gem
229
- * don't depend on guessmethod anymore
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
- * fix railsrc loading
233
- * add ori gem for nice Object#ri calling
234
- * minor tweaks
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
- * windows support
238
- * update hirb + activate unicode-drawn tables
283
+
284
+ - windows support
285
+ - update hirb + activate unicode-drawn tables
239
286
 
240
287
  ## 0.8.5
241
- * rails related fixes
288
+
289
+ - rails related fixes
242
290
 
243
291
  ## 0.8.4
244
- * now using wirb instead of wirble
292
+
293
+ - now using wirb instead of wirble
245
294
 
246
295
  ## 0.8.3
247
- * improved/added rvm methods (use, gemset, rubies, gemsets)
248
- * RVM (Ruby API) constant gets autoloaded
249
- * improved cd command
250
- * don't load guessmethod by default (it's cool, but not always suited for production)
251
- * more small changes
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
- * only do irb specific features if in irb (ripl compatibility)
255
- * more generic shell_name (in welcome message)
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
- * rewrote irb_rocket: fancy_irb. No more workarounds needed, anymore.
259
- * added sketches gem
260
- * customizable welcome message
261
- * more little fixes/enhancements
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
- * added Object#ri method
265
- * feature: extension package loading (e.g. irbtools-more)
266
- * feature: loading in IRB.conf[:IRB_RC] (loading when a subirb starts, no more guessmethod rails errors)
267
- * added rerequire (rrq) and ld load helper
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
- * added workaround to use irb_rocket and hirb at the same time (basic hack, e.g. paging does not work)
271
- * fixed little VERSION bug
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
- * refactored file structure and added new Irbtools.add_lib method
275
- * load railsrc if executed with rails and Irbtools.railsrc is set
276
- * more little fixes
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
- * fixed Rails 3 bug
280
- * added boson gem (command repository)
281
- * remember history when resetting or switching ruby version
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
- * added method for starting a debugger
340
+
341
+ - added method for starting a debugger
285
342
 
286
343
  ## 0.7.0
287
- * initial release
288
344
 
289
- J-_-L
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.10)
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.12.0, < 1.14)
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.1)
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.0)
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.15.5)
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.12.0)
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.0.0)
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.0.6)
61
- rdoc (6.6.3.1)
60
+ rake (13.2.1)
61
+ rdoc (6.7.0)
62
62
  psych (>= 4.0.0)
63
- reline (0.5.2)
63
+ reline (0.5.10)
64
64
  io-console (~> 0.5)
65
- rspec (3.12.0)
66
- rspec-core (~> 3.12.0)
67
- rspec-expectations (~> 3.12.0)
68
- rspec-mocks (~> 3.12.0)
69
- rspec-core (3.12.0)
70
- rspec-support (~> 3.12.0)
71
- rspec-expectations (3.12.1)
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.12.0)
74
- rspec-mocks (3.12.1)
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.12.0)
77
- rspec-support (3.12.0)
78
- ruby_engine (2.0.0)
79
- ruby_version (1.0.2)
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.0)
83
- unicode-display_width (2.5.0)
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.28)
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.4.4
98
+ 2.5.20