irbtools 1.6.0 → 1.6.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8c9fbe8b55b3e58e4180e9aab611fd69daf58ba1
4
- data.tar.gz: f9a76f042086e961472241d48106422316c0687b
3
+ metadata.gz: 56c70830364ce3c1dcb8aa748b33587fdd0c85df
4
+ data.tar.gz: 789585cb1ebb48e5cd0ea0e95116d390609d63d5
5
5
  SHA512:
6
- metadata.gz: 5105d29452b9d67bce58e4c34195a1ab612f002c6ccfc8b74cb635f63df1df42468186c406f29bab12b8b3865d781656f6e9b1b2bc95d453047e2bc0f7a101db
7
- data.tar.gz: e35b06046feab48086c9b3d02a3697528cca3198638ef0186013721c1ac40fe557879bec283016ecb7d2754a63363999c9d0a25f97088f8f3088789bc16e4733
6
+ metadata.gz: 8dbf1a730072f970412aaf53ed10c97f09daf4ee6b4bc1cfd67a9eacf0846b1c324bcc082421c8d39251edd2384595da411e3f377f2c7ae9137132044c7227e4
7
+ data.tar.gz: caa4b3a32be62122c0f25bdcf1e27617184c1222e329ece047b5e0a2d0f204a26de9226c2fe1daad3e82868cf035900a4340781ae7079ceec5e81178271b33a0
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ 1.6.1
2
+ * don't load debugging/repl by default
3
+ * rename re method to engine and rv to version
4
+
1
5
  1.6.0
2
6
  * remove zucker dependency, but add debugging, ruby_version, ruby_engine, ruby_info and os gem
3
7
  * configure binding.repl to load irb, not pry
@@ -56,8 +56,8 @@ When installing *irbtools*, some gems will not be installed to ensure Windows OS
56
56
  Lets you open vim (or emacs) from within IRB to hack something that gets loaded into the current session
57
57
  [debugging[https:/github.com/janlelis/debugging]] Print debugging helpers (<tt>q</tt>, <tt>mof</tt>, <tt>re</tt>)
58
58
  [ap[https://github.com/michaeldv/awesome_print]] More print debugging (<tt>ap</tt>)
59
- [ruby_version[https://github.com/janlelis/ruby_version]] <tt>rv</tt>
60
- [ruby_engine[https://github.com/janlelis/ruby_engine]] <tt>re</tt>
59
+ [ruby_version[https://github.com/janlelis/ruby_version]] <tt>version</tt>
60
+ [ruby_engine[https://github.com/janlelis/ruby_engine]] <tt>engine</tt>
61
61
  [os[https://github.com/rdp/os]] <tt>os</tt>
62
62
  [ruby_info[https://github.com/janlelis/ruby_info]] <tt>info</tt>
63
63
  [coderay[http://coderay.rubychan.de/]] Colorizes Ruby code (<tt>colorize</tt>, <tt>ray</tt>)
@@ -68,7 +68,7 @@ When installing *irbtools*, some gems will not be installed to ensure Windows OS
68
68
  [alias[http://tagaholic.me/2009/07/07/alias-quickness-in-the-ruby-console.html]] Easily create shortcuts for your favorite methods, even when they are nested, saved in personal yaml file
69
69
  [boson[http://tagaholic.me/boson/]] Command/task framework similar to rake and thor that opens your ruby universe to the commandline and irb
70
70
  [bond[http://tagaholic.me/bond/]] <b>irbtools-more:</b> Better IRB tab-completion
71
- [looksee[https://github.com/oggy/looksee]] <b>irbtools-more:</b> Great load path inspector: <tt>Object#l</tt> (Extended version of <tt>mof</tt>), also provides the ability to <tt>Object#edit</tt> methods.
71
+ [looksee[https://github.com/oggy/looksee]] <b>irbtools-more:</b> Great lookup path inspector: <tt>Object#l</tt> (Extended version of <tt>mof</tt>), also provides the ability to <tt>Object#edit</tt> methods.
72
72
  [*fileutils* (stdlib)] System utility methods: <tt>cd</tt>, <tt>pwd</tt>, <tt>ln_s</tt>, <tt>mv</tt>, <tt>rm</tt>, <tt>mkdir</tt>, <tt>touch</tt>
73
73
 
74
74
 
@@ -103,7 +103,7 @@ These are the custom public +Object+ methods renamed/patched for some gems
103
103
 
104
104
  [ri] Patching the +ri+ provided by *ori* to also allow default ri syntax on toplevel
105
105
  [src] Shortcut for displaying the method source using *method_source* and *coderay*
106
- [l/ll] Alternative method name to trigger the *looksee* gem (<b>irbtools-more</b>)
106
+ [l/lp] Alternative method name to trigger the *looksee* gem (<b>irbtools-more</b>)
107
107
 
108
108
 
109
109
  == Advanced tweaking
@@ -8,7 +8,7 @@
8
8
  # # # # #
9
9
  # define module methods
10
10
  module Irbtools
11
- VERSION = "1.6.0"
11
+ VERSION = "1.6.1"
12
12
 
13
13
  @libraries = { :start => [], :sub_session => [], :autoload => [], :thread => {}, :late => [], :late_thread => {} }
14
14
  @lib_hooks = Hash.new{|h,k| h[k] = [] }
@@ -36,8 +36,11 @@ end
36
36
  # ls, cat, rq, rrq, ld, session_history, reset!, clear, dbg, ...
37
37
  Irbtools.add_library 'every_day_irb', :thread => 10
38
38
 
39
- # print debugging helper (q, #m, #d, Regexp#visualize, ap, g)
40
- Irbtools.add_library 'debugging/all', :thread => 20
39
+ # print debugging helper (q, mof, re)
40
+ Irbtools.add_library 'debugging/q', :thread => 21
41
+ Irbtools.add_library 'debugging/mof', :thread => 22
42
+ Irbtools.add_library 'debugging/re', :thread => 23
43
+ Irbtools.add_library 'debugging/beep', :thread => 24
41
44
  Irbtools.add_library 'ap', :thread => 30
42
45
  Irbtools.add_library 'g', :thread => 40 if RbConfig::CONFIG['host_os'] =~ /mac|darwin/
43
46
 
@@ -188,11 +191,11 @@ Irbtools.add_library 'os', :autoload => :OS do
188
191
  end
189
192
 
190
193
  Irbtools.add_library 'ruby_engine', :autoload => :RubyEngine do
191
- def re() RubyEngine end unless defined? re
194
+ def engine() RubyEngine end unless defined? engine
192
195
  end
193
196
 
194
197
  Irbtools.add_library 'ruby_version', :autoload => :RubyVersion do
195
- def rv() RubyVersion end unless defined? rv
198
+ def version() RubyVersion end unless defined? version
196
199
  end
197
200
 
198
201
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: irbtools
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Lelis
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 1.6.0
19
+ version: 1.6.1
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: 1.6.0
26
+ version: 1.6.1
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: binding.repl
29
29
  requirement: !ruby/object:Gem::Requirement