irbtools 1.6.0 → 1.6.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 +4 -0
- data/README.rdoc +4 -4
- data/lib/irbtools/configure.rb +1 -1
- data/lib/irbtools/libraries.rb +7 -4
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 56c70830364ce3c1dcb8aa748b33587fdd0c85df
|
4
|
+
data.tar.gz: 789585cb1ebb48e5cd0ea0e95116d390609d63d5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8dbf1a730072f970412aaf53ed10c97f09daf4ee6b4bc1cfd67a9eacf0846b1c324bcc082421c8d39251edd2384595da411e3f377f2c7ae9137132044c7227e4
|
7
|
+
data.tar.gz: caa4b3a32be62122c0f25bdcf1e27617184c1222e329ece047b5e0a2d0f204a26de9226c2fe1daad3e82868cf035900a4340781ae7079ceec5e81178271b33a0
|
data/CHANGELOG
CHANGED
data/README.rdoc
CHANGED
@@ -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>
|
60
|
-
[ruby_engine[https://github.com/janlelis/ruby_engine]] <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
|
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/
|
106
|
+
[l/lp] Alternative method name to trigger the *looksee* gem (<b>irbtools-more</b>)
|
107
107
|
|
108
108
|
|
109
109
|
== Advanced tweaking
|
data/lib/irbtools/configure.rb
CHANGED
data/lib/irbtools/libraries.rb
CHANGED
@@ -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,
|
40
|
-
Irbtools.add_library 'debugging/
|
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
|
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
|
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.
|
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.
|
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.
|
26
|
+
version: 1.6.1
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: binding.repl
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|