irbtools 2.2.1 → 2.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.txt +3 -0
- data/MIT-LICENSE.txt +1 -1
- data/README.md +10 -8
- data/lib/irbtools/libraries.rb +1 -13
- data/lib/irbtools/version.rb +3 -1
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 323cbced41109a256d3a177c434af8348a852347ce63ce2cf32bcbffb9aa0186
|
4
|
+
data.tar.gz: c6f0b0539423bee17e34f2705c9ee8db325cc7835b8309e5fdca961ac3ac55af
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 74b08caab060f01b655a5d44211b8e79aa66851bf6e884a8dff9f9129961c568d680c74e71f0a061165861d3456686a59fb17799144092fb63c4ded3a5604550
|
7
|
+
data.tar.gz: 70772f0031ca5b7d52737e73a53601e14d174c8675b2f60a61d4da2c158003d9b2ce5bc38c235ae799f5250eefb946e4a6f0bb272c162aad3036c6534097aff6
|
data/CHANGELOG.txt
CHANGED
data/MIT-LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Irbtools [![version](https://badge.fury.io/rb/irbtools.svg)](
|
1
|
+
# Irbtools [![version](https://badge.fury.io/rb/irbtools.svg)](https://badge.fury.io/rb/irbtools)
|
2
2
|
|
3
3
|
_ _| | | |
|
4
4
|
| __| __ \ __| _ \ _ \ | __|
|
@@ -52,18 +52,18 @@ and edit your Gemfile to
|
|
52
52
|
[wirb](https://github.com/janlelis/wirb/)
|
53
53
|
[fancy_irb](https://github.com/janlelis/fancy_irb)
|
54
54
|
* Custom views for specific objects:
|
55
|
-
[hirb](
|
55
|
+
[hirb](https://tagaholic.me/2009/03/13/hirb-irb-on-the-good-stuff.html)
|
56
56
|
* **(irbtools-more)** Correction suggestions for misspelled method/constant names:
|
57
57
|
[did_you_mean](https://github.com/yuki24/did_you_mean)
|
58
58
|
* **(irbtools-more)** Better tab-completion:
|
59
|
-
[bond](
|
59
|
+
[bond](https://tagaholic.me/bond/)
|
60
60
|
|
61
61
|
#### Utils
|
62
62
|
|
63
63
|
* Useful IRB commands (see below):
|
64
64
|
[every_day_irb](https://github.com/janlelis/irbtools/tree/master/lib/every_day_irb.rb)
|
65
65
|
[debugging](https://github.com/janlelis/debugging)
|
66
|
-
[fileutils](
|
66
|
+
[fileutils](https://ruby-doc.org/stdlib/libdoc/fileutils/rdoc/FileUtils.html)
|
67
67
|
* Clipboard Access:
|
68
68
|
[clipboard](https://github.com/janlelis/clipboard)
|
69
69
|
* Terminal colors:
|
@@ -144,13 +144,15 @@ See [CONFIGURE.md](https://github.com/janlelis/irbtools/blob/master/CONFIGURE.md
|
|
144
144
|
|
145
145
|
Windows: ANSI support can be enabled via
|
146
146
|
[ansicon](https://github.com/adoxa/ansicon) or
|
147
|
-
[ConEmu](
|
147
|
+
[ConEmu](https://conemu.github.io/) or
|
148
|
+
[WSL](https://docs.microsoft.com/en-us/windows/wsl/about).
|
148
149
|
|
149
150
|
|
150
151
|
### Troubleshooting: Clipboard not working on Linux
|
151
152
|
|
152
|
-
Clipboard support requires **
|
153
|
-
|
153
|
+
Clipboard support requires **xsel** or **xclip**. On ubuntu, do:
|
154
|
+
|
155
|
+
sudo apt-get install xsel
|
154
156
|
|
155
157
|
|
156
158
|
### Troubleshooting: Unicode causes wrong display widths
|
@@ -192,5 +194,5 @@ Irbtools.start
|
|
192
194
|
|
193
195
|
## J-_-L
|
194
196
|
|
195
|
-
Copyright (c) 2010-
|
197
|
+
Copyright (c) 2010-2019 Jan Lelis <https://janlelis.com> released under the MIT
|
196
198
|
license.
|
data/lib/irbtools/libraries.rb
CHANGED
@@ -18,19 +18,7 @@ Irbtools.add_library 'interactive_editor', thread: :stdlib
|
|
18
18
|
Irbtools.add_library 'paint/pa', thread: :paint
|
19
19
|
|
20
20
|
Irbtools.add_library 'wirb/wp', thread: :paint do
|
21
|
-
|
22
|
-
Class.new Rails::Railtie do
|
23
|
-
console {
|
24
|
-
# This is terrible... anyone has a better idea?
|
25
|
-
Thread.new do
|
26
|
-
sleep 0.2
|
27
|
-
Wirb.start unless Wirb.running?
|
28
|
-
end
|
29
|
-
}
|
30
|
-
end
|
31
|
-
else
|
32
|
-
Wirb.start
|
33
|
-
end
|
21
|
+
Wirb.start
|
34
22
|
end
|
35
23
|
|
36
24
|
unless Irbtools.ripl?
|
data/lib/irbtools/version.rb
CHANGED
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: 2.2.
|
4
|
+
version: 2.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jan Lelis
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-04-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|
@@ -372,8 +372,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
372
372
|
- !ruby/object:Gem::Version
|
373
373
|
version: '0'
|
374
374
|
requirements: []
|
375
|
-
|
376
|
-
rubygems_version: 2.7.6
|
375
|
+
rubygems_version: 3.0.3
|
377
376
|
signing_key:
|
378
377
|
specification_version: 4
|
379
378
|
summary: Irbtools happy IRB.
|