irbtools 1.6.1 → 1.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG +5 -0
- data/{LICENSE → MIT-LICENSE} +0 -0
- data/README.rdoc +87 -59
- data/Rakefile +8 -0
- data/irbtools.gemspec +5 -6
- data/lib/irbtools/configure.rb +1 -1
- data/lib/irbtools/libraries.rb +0 -1
- metadata +20 -28
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 633476b7bd03365d6fd418263557b9e57cb222c9
|
4
|
+
data.tar.gz: f94cdf342de1c51305e691f93a6dc2cbfa702eac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: df68612861c08d453c98f20d41325740b9b2ec31510df2c74e8dbbf7cd2310388de96519ef0387600f44542aae5c6c0fbf54ba8c8cde16402f84a49362f27f35
|
7
|
+
data.tar.gz: 66745790e85da24063af166545b6be213a387c5760c01a72ef4c71bf2c75878e4cd0bc92cb1dcbeb96bbb5fcc19f25ffd35df637f8ac7f113b45981181e0416c
|
data/CHANGELOG
CHANGED
data/{LICENSE → MIT-LICENSE}
RENAMED
File without changes
|
data/README.rdoc
CHANGED
@@ -1,36 +1,42 @@
|
|
1
1
|
= irbtools
|
2
2
|
|
3
|
-
Improvements
|
3
|
+
Improvements for Ruby's IRB console, for example, colored output, and a lot of debugging and introspection methods. Unlike with PRY, you are still in your normal IRB. It is designed to work out-of-the-box so there is no reason to not use it!
|
4
4
|
|
5
5
|
|
6
6
|
== Setup
|
7
7
|
|
8
8
|
$ gem install irbtools
|
9
9
|
|
10
|
-
|
11
|
-
|
12
|
-
|
10
|
+
|
11
|
+
=== Extra Requirements
|
12
|
+
|
13
|
+
Linux: Clipboard support requires *xclip* or *xsel*: <tt>sudo apt-get install xclip</tt>
|
14
|
+
|
15
|
+
Windows: ANSI colors can be enabled via ansicon[https://github.com/adoxa/ansicon]
|
16
|
+
|
17
|
+
Mac OS: The g gem makes use of *growl*
|
13
18
|
|
14
19
|
|
15
20
|
== Usage
|
16
21
|
|
17
|
-
|
22
|
+
IRB executes code in <tt>~/.irbrc</tt> on start-up. If the file does not exist, yet, just create a new one. Add the following:
|
18
23
|
|
19
24
|
require 'irbtools'
|
20
25
|
|
21
|
-
|
26
|
+
See further below, if you want to customize which libraries should be loaded on IRB start-up.
|
22
27
|
|
23
28
|
|
24
|
-
===
|
29
|
+
=== With Bundler
|
25
30
|
|
26
|
-
To integrate *irbtools* into a Rails console,
|
31
|
+
To integrate *irbtools* into a Rails console (or any project that uses bundler), add <tt>irbtools</tt> to your Gemfile:
|
27
32
|
|
28
33
|
gem 'irbtools', require: 'binding.repl'
|
29
34
|
|
30
|
-
Thanks to help from the {binding.repl}[https://github.com/robgleeson/binding.repl]
|
35
|
+
Thanks to help from the {binding.repl gem}[https://github.com/robgleeson/binding.repl], you can start IRB (with *irbtools*) directly from your code:
|
31
36
|
|
32
37
|
binding.repl!
|
33
38
|
|
39
|
+
|
34
40
|
=== Debundle
|
35
41
|
|
36
42
|
Another way to activate *irbtools* in bundler projects is to add a {debundle hack}[https://github.com/janlelis/debundle.rb] at the beginning of your <tt>~/.irbrc</tt> file.
|
@@ -38,41 +44,60 @@ Another way to activate *irbtools* in bundler projects is to add a {debundle hac
|
|
38
44
|
|
39
45
|
=== This is irbtools Light
|
40
46
|
|
41
|
-
When installing *irbtools*, some gems will not be installed to ensure Windows OS support,
|
47
|
+
When installing *irbtools*, some gems will not be installed to ensure Windows OS support, for example, the bond gem for better auto-completion or the looksee gem for method/class introspection. These are packaged as {irbtools-more}[https://github.com/janlelis/irbtools-more]. To use <tt>irbtools-more</tt>, you will need to change your <tt>.irbrc</tt> to:
|
42
48
|
|
43
49
|
require 'irbtools/more'
|
44
50
|
|
51
|
+
and/or edit your Gemfile to
|
52
|
+
|
53
|
+
gem 'irbtools-more', require: 'binding.repl'
|
54
|
+
|
45
55
|
|
46
56
|
=== Included Gems and Libraries
|
57
|
+
==== IRB Improvements
|
58
|
+
|
59
|
+
* Colorization: wirb[https://github.com/janlelis/wirb/]
|
60
|
+
* IRB tweaks: fancy_irb[https://github.com/janlelis/fancy_irb]
|
61
|
+
* Custom views for specific objects: hirb[http://tagaholic.me/2009/03/13/hirb-irb-on-the-good-stuff.html]
|
62
|
+
* <b>(irbtools-more)</b> Better IRB tab-completion: bond[http://tagaholic.me/bond/]
|
63
|
+
|
64
|
+
|
65
|
+
==== Helpful Methods
|
66
|
+
|
67
|
+
* Useful IRB commands: every_day_irb[https://github.com/janlelis/irbtools/tree/master/lib/every_day_irb.rb]
|
68
|
+
* Clipboard Access: clipboard[http://github.com/janlelis/clipboard]
|
69
|
+
* Loads an editor into your IRB session: interactive_editor[https://github.com/jberkel/interactive_editor]
|
70
|
+
* Print debugging helpers: debugging[https:/github.com/janlelis/debugging]
|
71
|
+
* File-related system commands: *fileutils* (stdlib)
|
72
|
+
|
47
73
|
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
[
|
52
|
-
[
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
[
|
59
|
-
[
|
60
|
-
[
|
61
|
-
[
|
62
|
-
[
|
63
|
-
[
|
64
|
-
[
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
[
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
=== irbtools Methods (every_day_irb)
|
74
|
+
==== Platform Information
|
75
|
+
|
76
|
+
* Query current Ruby version: ruby_version[https://github.com/janlelis/ruby_version]
|
77
|
+
* Query current Ruby engine: ruby_engine[https://github.com/janlelis/ruby_engine]
|
78
|
+
* Query current operating system: os[https://github.com/rdp/os]
|
79
|
+
* Global information by the interpreter behind one <tt>Info</tt> constant: ruby_info[https://github.com/janlelis/ruby_info]
|
80
|
+
|
81
|
+
|
82
|
+
==== Introspection
|
83
|
+
|
84
|
+
* Improved lookup path inspection: method_locator[https://github.com/ryanlecompte/method_locator]
|
85
|
+
* Displays a method's source: method_source[https://github.com/banister/method_source]
|
86
|
+
* Adds a +ri+ doc method to Object: [ori[https://github.com/dadooda/ori]
|
87
|
+
* Finds the methods that turned a value into another value: methodfinder[https://github.com/citizen428/methodfinder]
|
88
|
+
* Syntax highlighting: coderay[https://github.com/rubychan/coderay]
|
89
|
+
* <b>irbtools-more</b> Awesome lookup path inspection: looksee[https://github.com/oggy/looksee]
|
90
|
+
* <b>irbtools-more</b> Useful "did you mean?" suggestions in stack-traces: did_you_mean[https://github.com/yuki42/did_you_mean]
|
91
|
+
|
92
|
+
|
93
|
+
==== Code Organization
|
94
|
+
|
95
|
+
* Command/task framework similar to rake and thor: boson[http://tagaholic.me/boson/]
|
96
|
+
* Shortcuts for your favorite methods, saved in personal yaml file: alias[http://tagaholic.me/2009/07/07/alias-quickness-in-the-ruby-console.html]
|
97
|
+
|
98
|
+
|
99
|
+
=== Irbtools Methods
|
100
|
+
==== From every_day_irb
|
76
101
|
|
77
102
|
[ls] Returns an array with the directory's content
|
78
103
|
[cat] Shortcut for <tt>File.read</tt>
|
@@ -83,47 +108,50 @@ When installing *irbtools*, some gems will not be installed to ensure Windows OS
|
|
83
108
|
[clear] Clears the terminal (<tt>system "clear"</tt>)
|
84
109
|
[session_history] Returns all issued commands as a string
|
85
110
|
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
[
|
90
|
-
[
|
91
|
-
[
|
92
|
-
[
|
93
|
-
[
|
94
|
-
[
|
95
|
-
[
|
96
|
-
[paste] Shortcut for <tt>Clipboard.paste</tt>
|
111
|
+
|
112
|
+
==== From irbtools in conjunction with the libraries
|
113
|
+
|
114
|
+
[cd] Improves the cd that is already provided by *fileutils* (try <tt>cd '-'</tt>)
|
115
|
+
[version] Displays RubyVersion
|
116
|
+
[engine] Displays RubyEngine
|
117
|
+
[os] OS information
|
118
|
+
[info] Aggregates information about your Ruby environment
|
119
|
+
[copy] Shortcut for <tt>Clipboard.copy</tt>
|
120
|
+
[paste] Shortcut for <tt>Clipboard.paste</tt>
|
97
121
|
[copy_input] Copies the session_history to the clipboard
|
98
122
|
[copy_output] Copies this session's results to the clipboard
|
99
|
-
[mf]
|
100
|
-
[page]
|
123
|
+
[mf] Shortcut for using the *methodfinder*
|
124
|
+
[page] Shortcut for using the pager from *hirb*
|
125
|
+
[colorize] Syntax highlights a ruby string using *coderay*
|
126
|
+
[ray] Syntax highlights a ruby file using *coderay*
|
127
|
+
|
101
128
|
|
102
|
-
|
129
|
+
==== From the libraries (puplic Object methods, renamed/patched)
|
103
130
|
|
104
131
|
[ri] Patching the +ri+ provided by *ori* to also allow default ri syntax on toplevel
|
105
132
|
[src] Shortcut for displaying the method source using *method_source* and *coderay*
|
133
|
+
[mlp] Shortcut for the *method_locator*
|
106
134
|
[l/lp] Alternative method name to trigger the *looksee* gem (<b>irbtools-more</b>)
|
107
135
|
|
108
136
|
|
109
137
|
== Advanced tweaking
|
110
|
-
===
|
138
|
+
=== Customize libraries to load
|
111
139
|
|
112
|
-
It is possible to modify, which libraries
|
140
|
+
It is possible to modify, which libraries to load:
|
113
141
|
|
114
142
|
# Don't require 'irbtools', but:
|
115
143
|
require 'irbtools/configure'
|
116
144
|
# Here you can modify the libraries using the methods below
|
117
145
|
Irbtools.start
|
118
146
|
|
119
|
-
If you do not want to load the default set of irbtools gems, you will have to use <tt>require 'irbtools/minimal'</tt> instead of <tt>configure</tt>.
|
147
|
+
If you do not want to load the default set of *irbtools* gems, you will have to use <tt>require 'irbtools/minimal'</tt> instead of <tt>configure</tt>.
|
120
148
|
|
121
149
|
You can use the following methods:
|
122
150
|
|
123
151
|
* <tt>Irbtools.add_library(lib, options_hash, &block)</tt>
|
124
152
|
* <tt>Irbtools.remove_library(lib)</tt>
|
125
153
|
|
126
|
-
The <tt>options_hash</tt> defines the way in which irbtools loads the library. The following options are possible
|
154
|
+
The <tt>options_hash</tt> defines the way in which *irbtools* loads the library. The following options are possible
|
127
155
|
[(no options)/<tt>:start</tt>] The library is required on startup before doing anything else (before displaying the prompt)
|
128
156
|
[<tt>:thread => identifier</tt>] After loading everything else, the library is required in a thread (while continuing loading). You can choose any identifier, but if you take the same one for multiple libraries, they will be loaded in the same thread (in the order that you define)
|
129
157
|
[<tt>:late => true</tt>] The library is required just before showing the prompt (note: loading threads might still be in process)
|
@@ -131,7 +159,7 @@ The <tt>options_hash</tt> defines the way in which irbtools loads the library. T
|
|
131
159
|
[<tt>:sub_session => true</tt>] The library is loaded every time a sub-session starts (using <tt>IRB.conf[:IRB_RC]</tt>). In ripl[https://github.com/cldwalker/ripl], <tt>ripl-after_rc</tt> is used.
|
132
160
|
[<tt>:autoload => :Constant</tt>] Use Ruby's <tt>autoload</tt> feature. It loads the library as soon as the constant is encountered.
|
133
161
|
|
134
|
-
You can pass a block as third argument, which gets executed after the library has completed loading (except for <tt>:autoload</tt>, in which case the code will executed directly on startup). You can modify the callbacks by using <tt>Irbtools.add_library_callback</tt> and <tt>Irbtools.replace_library_callback</tt>.
|
162
|
+
You can pass a block as third argument, which gets executed after the library has completed loading (except for <tt>:autoload</tt>, in which case the code will be executed directly on startup). You can modify the callbacks by using <tt>Irbtools.add_library_callback</tt> and <tt>Irbtools.replace_library_callback</tt>.
|
135
163
|
|
136
164
|
When adding a new library, you should firstly consider some way to load it via <tt>:autoload</tt>.
|
137
165
|
If this is not possible, try loading via <tt>:thread</tt>. If that is not possible either, you will need to fallback to the default loading mechanism.
|
@@ -167,9 +195,9 @@ The welcome message can be customized with <tt>Irbtools.welcome_message=</tt>
|
|
167
195
|
|
168
196
|
== Web Console
|
169
197
|
|
170
|
-
|
198
|
+
*irbtools* works well together with the amazing {web-console!}[https://github.com/rails/web-console]
|
171
199
|
|
172
200
|
|
173
201
|
== J-_-L
|
174
202
|
|
175
|
-
Copyright (c) 2010-2014 Jan Lelis <http://janlelis.
|
203
|
+
Copyright (c) 2010-2014 Jan Lelis <http://janlelis.com> released under the MIT license.
|
data/Rakefile
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# require 'rake'
|
2
2
|
require 'fileutils'
|
3
|
+
require "rspec/core/rake_task"
|
4
|
+
|
5
|
+
task :test => :spec
|
6
|
+
task :default => :spec
|
7
|
+
RSpec::Core::RakeTask.new(:spec) do |t|
|
8
|
+
t.rspec_opts = '--backtrace --color'
|
9
|
+
end
|
10
|
+
|
3
11
|
|
4
12
|
def gemspec1
|
5
13
|
@gemspec1 ||= eval(File.read('irbtools.gemspec'), binding, 'irbtools.gemspec')
|
data/irbtools.gemspec
CHANGED
@@ -9,17 +9,17 @@ Gem::Specification.new do |s|
|
|
9
9
|
s.summary = 'irbtools happy irb.'
|
10
10
|
s.description = "irbtools makes using Ruby's IRB easier and more fun. Put a require 'irbtools' in a .irbrc file in your home directory to get started."
|
11
11
|
s.email = 'mail@janlelis.de'
|
12
|
-
s.extra_rdoc_files = %w[LICENSE README.rdoc]
|
12
|
+
s.extra_rdoc_files = %w[MIT-LICENSE README.rdoc]
|
13
13
|
s.files = %w[lib/irbtools.rb lib/irbtools/configure.rb lib/irbtools/libraries.rb lib/irbtools/minimal.rb CHANGELOG Rakefile irbtools.gemspec]
|
14
14
|
s.homepage = 'https://github.com/janlelis/irbtools'
|
15
|
-
s.required_ruby_version = '>= 1.9.
|
15
|
+
s.required_ruby_version = '>= 1.9.3'
|
16
16
|
s.license = 'MIT'
|
17
17
|
|
18
18
|
# functionality
|
19
19
|
s.add_dependency %q<every_day_irb>, ">= #{ s.version }"
|
20
|
-
s.add_dependency %q<binding.repl>, ">= 1.0.
|
21
|
-
s.add_dependency %q<boson>, "~> 1.
|
22
|
-
s.add_dependency %q<boson-more>, "~> 0.
|
20
|
+
s.add_dependency %q<binding.repl>, "~> 1", ">= 1.0.4"
|
21
|
+
s.add_dependency %q<boson>, "~> 1.3.0"
|
22
|
+
s.add_dependency %q<boson-more>, "~> 0.3.0"
|
23
23
|
s.add_dependency %q<alias>, "~> 0.2.3"
|
24
24
|
s.add_dependency %q<clipboard>, "~> 1.0.5"
|
25
25
|
s.add_dependency %q<interactive_editor>, ">= 0.0.10"
|
@@ -33,7 +33,6 @@ Gem::Specification.new do |s|
|
|
33
33
|
|
34
34
|
# debugging
|
35
35
|
s.add_dependency %q<debugging>, "~> 1.0"
|
36
|
-
s.add_dependency %q<awesome_print>, "~> 1.2"
|
37
36
|
s.add_dependency %q<g>, ">= 1.7.2"
|
38
37
|
|
39
38
|
# introspection / docs
|
data/lib/irbtools/configure.rb
CHANGED
data/lib/irbtools/libraries.rb
CHANGED
@@ -41,7 +41,6 @@ Irbtools.add_library 'debugging/q', :thread => 21
|
|
41
41
|
Irbtools.add_library 'debugging/mof', :thread => 22
|
42
42
|
Irbtools.add_library 'debugging/re', :thread => 23
|
43
43
|
Irbtools.add_library 'debugging/beep', :thread => 24
|
44
|
-
Irbtools.add_library 'ap', :thread => 30
|
45
44
|
Irbtools.add_library 'g', :thread => 40 if RbConfig::CONFIG['host_os'] =~ /mac|darwin/
|
46
45
|
|
47
46
|
# lets you open vim (or your favourite editor), hack something, save it, and it's loaded in the current irb session
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: irbtools
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jan Lelis
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-10-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: every_day_irb
|
@@ -16,56 +16,62 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1.
|
19
|
+
version: 1.7.0
|
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.
|
26
|
+
version: 1.7.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: binding.repl
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1'
|
31
34
|
- - ">="
|
32
35
|
- !ruby/object:Gem::Version
|
33
|
-
version: 1.0.
|
36
|
+
version: 1.0.4
|
34
37
|
type: :runtime
|
35
38
|
prerelease: false
|
36
39
|
version_requirements: !ruby/object:Gem::Requirement
|
37
40
|
requirements:
|
41
|
+
- - "~>"
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '1'
|
38
44
|
- - ">="
|
39
45
|
- !ruby/object:Gem::Version
|
40
|
-
version: 1.0.
|
46
|
+
version: 1.0.4
|
41
47
|
- !ruby/object:Gem::Dependency
|
42
48
|
name: boson
|
43
49
|
requirement: !ruby/object:Gem::Requirement
|
44
50
|
requirements:
|
45
51
|
- - "~>"
|
46
52
|
- !ruby/object:Gem::Version
|
47
|
-
version: 1.
|
53
|
+
version: 1.3.0
|
48
54
|
type: :runtime
|
49
55
|
prerelease: false
|
50
56
|
version_requirements: !ruby/object:Gem::Requirement
|
51
57
|
requirements:
|
52
58
|
- - "~>"
|
53
59
|
- !ruby/object:Gem::Version
|
54
|
-
version: 1.
|
60
|
+
version: 1.3.0
|
55
61
|
- !ruby/object:Gem::Dependency
|
56
62
|
name: boson-more
|
57
63
|
requirement: !ruby/object:Gem::Requirement
|
58
64
|
requirements:
|
59
65
|
- - "~>"
|
60
66
|
- !ruby/object:Gem::Version
|
61
|
-
version: 0.
|
67
|
+
version: 0.3.0
|
62
68
|
type: :runtime
|
63
69
|
prerelease: false
|
64
70
|
version_requirements: !ruby/object:Gem::Requirement
|
65
71
|
requirements:
|
66
72
|
- - "~>"
|
67
73
|
- !ruby/object:Gem::Version
|
68
|
-
version: 0.
|
74
|
+
version: 0.3.0
|
69
75
|
- !ruby/object:Gem::Dependency
|
70
76
|
name: alias
|
71
77
|
requirement: !ruby/object:Gem::Requirement
|
@@ -192,20 +198,6 @@ dependencies:
|
|
192
198
|
- - "~>"
|
193
199
|
- !ruby/object:Gem::Version
|
194
200
|
version: '1.0'
|
195
|
-
- !ruby/object:Gem::Dependency
|
196
|
-
name: awesome_print
|
197
|
-
requirement: !ruby/object:Gem::Requirement
|
198
|
-
requirements:
|
199
|
-
- - "~>"
|
200
|
-
- !ruby/object:Gem::Version
|
201
|
-
version: '1.2'
|
202
|
-
type: :runtime
|
203
|
-
prerelease: false
|
204
|
-
version_requirements: !ruby/object:Gem::Requirement
|
205
|
-
requirements:
|
206
|
-
- - "~>"
|
207
|
-
- !ruby/object:Gem::Version
|
208
|
-
version: '1.2'
|
209
201
|
- !ruby/object:Gem::Dependency
|
210
202
|
name: g
|
211
203
|
requirement: !ruby/object:Gem::Requirement
|
@@ -338,11 +330,11 @@ email: mail@janlelis.de
|
|
338
330
|
executables: []
|
339
331
|
extensions: []
|
340
332
|
extra_rdoc_files:
|
341
|
-
- LICENSE
|
333
|
+
- MIT-LICENSE
|
342
334
|
- README.rdoc
|
343
335
|
files:
|
344
336
|
- CHANGELOG
|
345
|
-
- LICENSE
|
337
|
+
- MIT-LICENSE
|
346
338
|
- README.rdoc
|
347
339
|
- Rakefile
|
348
340
|
- irbtools.gemspec
|
@@ -367,7 +359,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
367
359
|
requirements:
|
368
360
|
- - ">="
|
369
361
|
- !ruby/object:Gem::Version
|
370
|
-
version: 1.9.
|
362
|
+
version: 1.9.3
|
371
363
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
372
364
|
requirements:
|
373
365
|
- - ">="
|
@@ -375,7 +367,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
375
367
|
version: '0'
|
376
368
|
requirements: []
|
377
369
|
rubyforge_project:
|
378
|
-
rubygems_version: 2.2.
|
370
|
+
rubygems_version: 2.2.2
|
379
371
|
signing_key:
|
380
372
|
specification_version: 4
|
381
373
|
summary: irbtools happy irb.
|