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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 845b6af7e86cf2abfc0264ee0390dd01567d2d49
4
- data.tar.gz: 8e7894a2e2d74184f615164e511f4349a47273b0
3
+ metadata.gz: 88f0223aa55ce8e6eaa02e2d3ec7d6e5423a9774
4
+ data.tar.gz: 9c5249c93669e0ca4ccf2805e992ac9b62175b30
5
5
  SHA512:
6
- metadata.gz: 586f9ed786d25695ea8c609180fdfbc84dd1f4631cef13b75f8d61050eb6fc5d416adeada32aecbfe4612cc689edafe293347d841063fda51d6fde12b9aa8d46
7
- data.tar.gz: 540ffa4e2d670a61eb289339122bab0a9c8c08248786f812a28a6c49e4f9f58e4ddaee8af8c2de927864ef6e141b0b3769485d2dd44097bedf292d5e256a0313
6
+ metadata.gz: e7f9be74c83546eda988058c330cb4f3d1443b64eb178540795dd682ad2ed292105cf0b5f44587ef117f5868045e930dacd0c5ef88d023e5e33764fd609f7c67
7
+ data.tar.gz: 007ee7fccca8d6e4cd4666694b1dac0fd2992403bb4b9886b5967dd2005fb95788b3daa5aedede0d1826368d00548ef5a3cb9ca58bfe76a01b568d8e2000b381
data/CHANGELOG CHANGED
@@ -1,3 +1,6 @@
1
+ == 1.6.0
2
+ * (nothing)
3
+
1
4
  == 1.5.2
2
5
  * Ruby 2.1 Compatibility / Update looksee gem
3
6
  * Be less restrictive in gem dependencies
@@ -1,11 +1,13 @@
1
1
  = irbtools-more
2
2
 
3
- <tt>irbtools-more</tt> adds some more irb gems which may not build out-of-the-box. Currently included: bond for better auto-completion and looksee for great introspection. See the {irbtools readme}[https://github.com/janlelis/irbtools] for details.
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 the <tt>Gemfile</tt>, you will need to add:
27
+ In you <tt>Gemfile</tt>, you will need to add:
25
28
 
26
- gem 'irbtools-more', require: false
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
@@ -29,9 +29,4 @@ task :gemspec do
29
29
  gemspec.validate
30
30
  end
31
31
 
32
- desc 'Run tests'
33
- task :test do |t|
34
- sh 'bacon -q -Ilib -I. test/*_test.rb'
35
- end
36
-
37
32
  task :default => :test
@@ -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 advancded gems like bond or looksee to irbtools.'
12
- s.description = 'irbtools-more adds advancded gems like bond or looksee to irbtools (gems that use core extensions). Simply put a require "irbtools/more" in the .irbrc file in your home directory to get started.'
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.5'
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
@@ -4,7 +4,7 @@ standalone = !(defined? Irbtools)
4
4
  # define version
5
5
  module Irbtools
6
6
  module More
7
- VERSION = '1.5.2'
7
+ VERSION = '1.6.0'
8
8
  end
9
9
  end
10
10
 
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.5.2
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-01-13 00:00:00.000000000 Z
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.5'
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.5'
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 advancded gems like bond or looksee to irbtools (gems
56
- that use core extensions). Simply put a require "irbtools/more" in the .irbrc file
57
- in your home directory to get started.
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.0
92
+ rubygems_version: 2.2.1
93
93
  signing_key:
94
94
  specification_version: 4
95
- summary: irbtools-more adds advancded gems like bond or looksee to irbtools.
95
+ summary: irbtools-more adds bond and looksee to IRB.
96
96
  test_files: []
97
- has_rdoc: