irbtools-more 1.7.1 → 1.7.2
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 +3 -0
- data/MIT-LICENSE +1 -1
- data/README.rdoc +1 -1
- data/irbtools-more.gemspec +2 -2
- data/lib/irbtools/more.rb +3 -3
- metadata +17 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cf26a9ff4aefb4be16ff43acf63d8e248f741cc7
|
|
4
|
+
data.tar.gz: 69269c9ee85167370323c398a951a836dc21dd10
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bf69a3a8170ce32b9c7b99a5e1623f4a21b86e067c1016bc989b3bd57d573297fcddcd073da590ef574ecdaeb8c904e301c0d0b1913115f2107e63b9bce17d0b
|
|
7
|
+
data.tar.gz: 662a60026aec29b9b51de56deed7276d9c81dd1de36cd790a01e16a1d06f4581e40cb875ae3d3fc31ca8433962872da0048f0be88f846a4747353130e5e1fe9f
|
data/CHANGELOG
CHANGED
data/MIT-LICENSE
CHANGED
data/README.rdoc
CHANGED
|
@@ -37,4 +37,4 @@ If you want to customize which libraries you want to use, you can load irbtools-
|
|
|
37
37
|
|
|
38
38
|
== J-_-L
|
|
39
39
|
|
|
40
|
-
Copyright (c) 2010-
|
|
40
|
+
Copyright (c) 2010-2015 Jan Lelis, http://janlelis.com. See MIT-LICENSE for details.
|
data/irbtools-more.gemspec
CHANGED
|
@@ -15,8 +15,8 @@ Gem::Specification.new do |s|
|
|
|
15
15
|
s.required_ruby_version = '>= 1.9.3'
|
|
16
16
|
s.add_dependency 'irbtools', '~> 1.7'
|
|
17
17
|
s.add_dependency 'bond', '~> 0.5'
|
|
18
|
-
s.add_dependency 'looksee' , '~>
|
|
18
|
+
s.add_dependency 'looksee' , '~> 3.0', '>= 3.0.1'
|
|
19
19
|
s.add_dependency 'binding_of_caller', '~> 0.7'
|
|
20
|
-
s.add_dependency 'did_you_mean', '~> 0.9'
|
|
20
|
+
s.add_dependency 'did_you_mean', '~> 0.9', '>= 0.9.5'
|
|
21
21
|
end
|
|
22
22
|
|
data/lib/irbtools/more.rb
CHANGED
|
@@ -4,7 +4,7 @@ standalone = !(defined? Irbtools)
|
|
|
4
4
|
# define version
|
|
5
5
|
module Irbtools
|
|
6
6
|
module More
|
|
7
|
-
VERSION = '1.7.
|
|
7
|
+
VERSION = '1.7.2'
|
|
8
8
|
end
|
|
9
9
|
end
|
|
10
10
|
|
|
@@ -26,8 +26,8 @@ end
|
|
|
26
26
|
|
|
27
27
|
# Object#l method for inspecting its lookup path
|
|
28
28
|
Irbtools.add_library 'looksee', late_thread: :c do
|
|
29
|
-
Looksee
|
|
30
|
-
class Object;
|
|
29
|
+
Looksee.rename :l
|
|
30
|
+
class Object; def lp() l end; end
|
|
31
31
|
end
|
|
32
32
|
|
|
33
33
|
# repl method
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: irbtools-more
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.7.
|
|
4
|
+
version: 1.7.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: 2015-01-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: irbtools
|
|
@@ -44,14 +44,20 @@ dependencies:
|
|
|
44
44
|
requirements:
|
|
45
45
|
- - "~>"
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: '
|
|
47
|
+
version: '3.0'
|
|
48
|
+
- - ">="
|
|
49
|
+
- !ruby/object:Gem::Version
|
|
50
|
+
version: 3.0.1
|
|
48
51
|
type: :runtime
|
|
49
52
|
prerelease: false
|
|
50
53
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
54
|
requirements:
|
|
52
55
|
- - "~>"
|
|
53
56
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: '
|
|
57
|
+
version: '3.0'
|
|
58
|
+
- - ">="
|
|
59
|
+
- !ruby/object:Gem::Version
|
|
60
|
+
version: 3.0.1
|
|
55
61
|
- !ruby/object:Gem::Dependency
|
|
56
62
|
name: binding_of_caller
|
|
57
63
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -73,6 +79,9 @@ dependencies:
|
|
|
73
79
|
- - "~>"
|
|
74
80
|
- !ruby/object:Gem::Version
|
|
75
81
|
version: '0.9'
|
|
82
|
+
- - ">="
|
|
83
|
+
- !ruby/object:Gem::Version
|
|
84
|
+
version: 0.9.5
|
|
76
85
|
type: :runtime
|
|
77
86
|
prerelease: false
|
|
78
87
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -80,6 +89,9 @@ dependencies:
|
|
|
80
89
|
- - "~>"
|
|
81
90
|
- !ruby/object:Gem::Version
|
|
82
91
|
version: '0.9'
|
|
92
|
+
- - ">="
|
|
93
|
+
- !ruby/object:Gem::Version
|
|
94
|
+
version: 0.9.5
|
|
83
95
|
description: irbtools-more adds bond and looksee to IRB (Gems that use core extensions).
|
|
84
96
|
Simply put a require "irbtools/more" in the .irbrc file in your home directory to
|
|
85
97
|
get started.
|
|
@@ -117,7 +129,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
117
129
|
version: '0'
|
|
118
130
|
requirements: []
|
|
119
131
|
rubyforge_project:
|
|
120
|
-
rubygems_version: 2.
|
|
132
|
+
rubygems_version: 2.4.5
|
|
121
133
|
signing_key:
|
|
122
134
|
specification_version: 4
|
|
123
135
|
summary: irbtools-more adds bond and looksee to IRB.
|