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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c8fc1ab015558e576f9119637b136959b47f3f85fdfd1d34fa96deb9bef1e154
4
- data.tar.gz: 2de6b93e3e6968ceaa21e8573fe8cf6d0b9a7e46e7abb487f4c0f81a6c5b2898
3
+ metadata.gz: 323cbced41109a256d3a177c434af8348a852347ce63ce2cf32bcbffb9aa0186
4
+ data.tar.gz: c6f0b0539423bee17e34f2705c9ee8db325cc7835b8309e5fdca961ac3ac55af
5
5
  SHA512:
6
- metadata.gz: 53dc385f9a525cad98e1fbb4c3f868756761fe22d3f998544805d3cf9611a2353fe300fcb1d43b9cce9bd23a03126b793f6b0c19decca37e934885c85c48f062
7
- data.tar.gz: 70d33881d5ac22ec3a5e376210e76d31f4f6eb0c77c7a4456657b181e93a33bd1932d9a626059f5199e28776cbc6c6ba77076dd0acd47f2bbd112a0f0322f851
6
+ metadata.gz: 74b08caab060f01b655a5d44211b8e79aa66851bf6e884a8dff9f9129961c568d680c74e71f0a061165861d3456686a59fb17799144092fb63c4ded3a5604550
7
+ data.tar.gz: 70772f0031ca5b7d52737e73a53601e14d174c8675b2f60a61d4da2c158003d9b2ce5bc38c235ae799f5250eefb946e4a6f0bb272c162aad3036c6534097aff6
@@ -1,3 +1,6 @@
1
+ 2.2.2
2
+ * Remove Rails WIRB loading hack (no longer necessary)
3
+
1
4
  2.2.1
2
5
  * Allow os gem to be below 1.0
3
6
  * Do not use binding.repl gem if Ruby version is at least 2.5
@@ -1,4 +1,4 @@
1
- Copyright (c) 2010-2015 Jan Lelis
1
+ Copyright (c) 2010-2019 Jan Lelis
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Irbtools [![version](https://badge.fury.io/rb/irbtools.svg)](http://badge.fury.io/rb/irbtools)
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](http://tagaholic.me/2009/03/13/hirb-irb-on-the-good-stuff.html)
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](http://tagaholic.me/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](http://ruby-doc.org/stdlib-2.2.1/libdoc/fileutils/rdoc/FileUtils.html)
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](http://code.google.com/p/conemu-maximus5/).
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 **xclip** or **xsel**. On ubuntu, do: `sudo apt-get
153
- install xclip`
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-2015 Jan Lelis <http://janlelis.com> released under the MIT
197
+ Copyright (c) 2010-2019 Jan Lelis <https://janlelis.com> released under the MIT
196
198
  license.
@@ -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
- if defined?(Rails)
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?
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Irbtools
2
- VERSION = "2.2.1".freeze
4
+ VERSION = "2.2.2"
3
5
  end
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.1
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: 2018-05-12 00:00:00.000000000 Z
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
- rubyforge_project:
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.