irbtools-more 1.5.2 → 1.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG +3 -0
- data/README.rdoc +8 -6
- data/Rakefile +0 -5
- data/irbtools-more.gemspec +3 -3
- data/lib/irbtools/more.rb +1 -1
- metadata +9 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 88f0223aa55ce8e6eaa02e2d3ec7d6e5423a9774
|
4
|
+
data.tar.gz: 9c5249c93669e0ca4ccf2805e992ac9b62175b30
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e7f9be74c83546eda988058c330cb4f3d1443b64eb178540795dd682ad2ed292105cf0b5f44587ef117f5868045e930dacd0c5ef88d023e5e33764fd609f7c67
|
7
|
+
data.tar.gz: 007ee7fccca8d6e4cd4666694b1dac0fd2992403bb4b9886b5967dd2005fb95788b3daa5aedede0d1826368d00548ef5a3cb9ca58bfe76a01b568d8e2000b381
|
data/CHANGELOG
CHANGED
data/README.rdoc
CHANGED
@@ -1,11 +1,13 @@
|
|
1
1
|
= irbtools-more
|
2
2
|
|
3
|
-
<tt>irbtools-more</tt> adds
|
3
|
+
<tt>irbtools-more</tt> adds more IRB gems which may not build out-of-the-box. Currently included: bond for better auto-completion and looksee for great method introspection. See the {irbtools readme}[https://github.com/janlelis/irbtools] for details.
|
4
|
+
|
4
5
|
|
5
6
|
== Setup
|
6
7
|
|
7
8
|
gem install irbtools-more
|
8
9
|
|
10
|
+
|
9
11
|
== Usage
|
10
12
|
|
11
13
|
To use it, put the following in your <tt>~/.irbrc</tt> file (this file is loaded every time you start an irb):
|
@@ -19,16 +21,16 @@ If it does not exist, just create a new one. It's possible to modify, which libr
|
|
19
21
|
# here you can edit which libraries get loaded. See the irbtools README for details.
|
20
22
|
Irbtools.start
|
21
23
|
|
24
|
+
|
22
25
|
== Bundler Environments
|
23
26
|
|
24
|
-
In
|
27
|
+
In you <tt>Gemfile</tt>, you will need to add:
|
25
28
|
|
26
|
-
gem 'irbtools-more', require:
|
29
|
+
gem 'irbtools-more', require: 'binding.repl'
|
27
30
|
|
28
31
|
Another way is to add a {debundle hack}[https://github.com/janlelis/debundle.rb] at the beginning of your <tt>~/.irbrc</tt>.
|
29
32
|
|
30
|
-
== Copyright
|
31
|
-
|
32
|
-
Copyright (c) 2010-2014 Jan Lelis, http://janlelis.de. See LICENSE for details.
|
33
33
|
|
34
34
|
== J-_-L
|
35
|
+
|
36
|
+
Copyright (c) 2010-2014 Jan Lelis, http://janlelis.de. See LICENSE for details.
|
data/Rakefile
CHANGED
data/irbtools-more.gemspec
CHANGED
@@ -8,12 +8,12 @@ Gem::Specification.new do |s|
|
|
8
8
|
s.authors = ["Jan Lelis"]
|
9
9
|
s.email = %q{mail@janlelis.de}
|
10
10
|
s.homepage = %q{https://github.com/janlelis/irbtools-more}
|
11
|
-
s.summary = 'irbtools-more adds
|
12
|
-
s.description = 'irbtools-more adds
|
11
|
+
s.summary = 'irbtools-more adds bond and looksee to IRB.'
|
12
|
+
s.description = 'irbtools-more adds bond and looksee to IRB (Gems that use core extensions). Simply put a require "irbtools/more" in the .irbrc file in your home directory to get started.'
|
13
13
|
s.extra_rdoc_files = %w[LICENSE README.rdoc]
|
14
14
|
s.files = Dir.glob(%w[lib/**/*.rb ]) + %w{CHANGELOG Rakefile irbtools-more.gemspec}
|
15
15
|
s.required_ruby_version = '>= 1.9.2'
|
16
|
-
s.add_dependency 'irbtools', '~> 1.
|
16
|
+
s.add_dependency 'irbtools', '~> 1.6'
|
17
17
|
s.add_dependency 'bond', '~> 0.5'
|
18
18
|
s.add_dependency 'looksee' , '~> 2.0'
|
19
19
|
end
|
data/lib/irbtools/more.rb
CHANGED
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.
|
4
|
+
version: 1.6.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-02-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: irbtools
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '1.
|
19
|
+
version: '1.6'
|
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.6'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: bond
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -52,9 +52,9 @@ dependencies:
|
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '2.0'
|
55
|
-
description: irbtools-more adds
|
56
|
-
|
57
|
-
|
55
|
+
description: irbtools-more adds bond and looksee to IRB (Gems that use core extensions).
|
56
|
+
Simply put a require "irbtools/more" in the .irbrc file in your home directory to
|
57
|
+
get started.
|
58
58
|
email: mail@janlelis.de
|
59
59
|
executables: []
|
60
60
|
extensions: []
|
@@ -89,9 +89,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
89
89
|
version: '0'
|
90
90
|
requirements: []
|
91
91
|
rubyforge_project:
|
92
|
-
rubygems_version: 2.2.
|
92
|
+
rubygems_version: 2.2.1
|
93
93
|
signing_key:
|
94
94
|
specification_version: 4
|
95
|
-
summary: irbtools-more adds
|
95
|
+
summary: irbtools-more adds bond and looksee to IRB.
|
96
96
|
test_files: []
|
97
|
-
has_rdoc:
|