irbtools 1.4.0 → 1.5.0

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.
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ OTEzMGJlODNkOGMzODZhNDQ0MjQ1ZTIzYmU4NDFhMmU2YmJiYWIzOA==
5
+ data.tar.gz: !binary |-
6
+ MDhhNjIwNmJkOTY1ZTVmNmJiMjg2Zjk2M2QxMTFlOTQ1YzIxM2UyOA==
7
+ !binary "U0hBNTEy":
8
+ metadata.gz: !binary |-
9
+ OGJhNTJhNzQ4MTQ5MjU0MjdiMDRkNjcxYmNhYTA1ZmIwN2EzMWZkNzYyMDFj
10
+ YjUyMjI4ODlhMGE3ODI0ZWQ3ODJkMGU2OTYzNWY5YTlmZTNkYWM4ZjU4ZDY4
11
+ YmEyYjFlNWUxMjQyMzQ5ZmU4MmRjMmI1Njg1MTgyNjg2NDEwNGU=
12
+ data.tar.gz: !binary |-
13
+ OGU1MThiNjNkOThkOWVhYmJjZjY0NGFjYWRkZTI2ODY2MmIzNDk4YzVhM2Yw
14
+ NjU2MWMwMjIzNDUwZGFiYWIwYzAzMmQyZWU1MDgxMDU1OTlmYmFjNGIzODMy
15
+ ZWI2ZGVjOGE3MTU2MTBjMzRhYjU2YzE0YTkzODIzYWY3ZDNjN2M=
data/CHANGELOG CHANGED
@@ -1,3 +1,10 @@
1
+ 1.5.0 (master)
2
+ * update debundle hack
3
+ * load less zucker libraries
4
+ * add alias gem
5
+ * finaly load boson correctly (but don't load any boson plugin, yet), also depend on boson-more
6
+ * version bumps (zucker, clipboard, paint, hirb, wirb, ap, coderay, g)
7
+
1
8
  1.4.0
2
9
  * every_day_irb is now a module that extends self
3
10
  * specs for most of every_day_irb's functionality
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2010-2012 Jan Lelis
1
+ Copyright (c) 2010-2013 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
@@ -1,5 +1,5 @@
1
1
  = irbtools
2
- irbtools improves Ruby's irb console. Unlike pry, you are still in your normal irb, but you have colors and lots of helpful methods.
2
+ irbtools improves Ruby's irb console. Unlike pry, you are still in your normal irb, but you have colors and lots of helpful methods. It's designed to work out-of-the-box so there is no reason to not use it!
3
3
 
4
4
  == Setup
5
5
 
@@ -21,36 +21,25 @@ To integrate irbtools into a rails console, you can either add <tt>irbtools</tt>
21
21
 
22
22
  gem 'irbtools', :require => false
23
23
 
24
- Another way is to add a debundle hack on top of your <tt>~/.irbrc</tt>:
25
-
26
- # modified from https://github.com/ConradIrwin/pry-debundle/pull/5
27
- if defined?(Gem.post_reset_hooks)
28
- Gem.post_reset_hooks.reject!{ |hook| hook.source_location.first =~ %r{/bundler/} }
29
- Gem::Specification.reset
30
- load 'rubygems/custom_require.rb'
31
- alias gem require
32
- end
24
+ Another way is to add a {debundle hack}[https://github.com/janlelis/debundle.rb] at the beginning of your <tt>~/.irbrc</tt>.
33
25
 
34
26
  === Yesterday's Ruby versions
35
27
 
36
- *irbtools* focuses on Ruby 1.9 support. To get it working with 1.8.7, use the following line in your Gemfile:
28
+ *irbtools* is build for Ruby 1.9+. To last version working with 1.8.7, can be found in the *legacy* branch:
37
29
 
38
30
  gem 'irbtools', :git => "git://github.com/janlelis/irbtools.git", :branch => 'legacy', :require => false
39
31
 
40
32
  === This is irbtools "light"
41
33
 
42
- When installing *irbtools*, some gems won't be installed to keep windows support, e.g. better auto-completion or the looksee gem. These are packaged into the {irbtools-more}[https://github.com/janlelis/irbtools-more] gem. To use them, you need to change your <tt>.irbrc</tt> to:
34
+ When installing *irbtools*, some gems won't be installed to ensure Windows OS support, e.g. bond for better auto-completion or the looksee gem. These are packaged into the {irbtools-more}[https://github.com/janlelis/irbtools-more] gem. To use them, you need to change your <tt>.irbrc</tt> to:
43
35
 
44
- require 'irbtools/configure'
45
- Irbtools.add_package :more
46
- Irbtools.start
36
+ require 'irbtools/more'
47
37
 
48
38
  === Included gems and libraries
49
39
 
50
40
  See http://rbjl.net/40-irbtools-release-the-power-of-irb or read the commented source files to get some examples of what you can do with irbtools.
51
41
 
52
- [wirb[https://github.com/janlelis/wirb/]] Colorizes resulting Ruby objects
53
- [paint[https://github.com/janlelis/paint/]] Provides easily to use terminal colors
42
+ [wirb[https://github.com/janlelis/wirb/]] General colorizer for resulting Ruby objects
54
43
  [hirb[http://tagaholic.me/2009/03/13/hirb-irb-on-the-good-stuff.html]]
55
44
  Custom views for specific objects, e.g. tables for ActiveRecord
56
45
  [fancy_irb[https://github.com/janlelis/fancy_irb]] Hash rockets for results and colorful error messages
@@ -58,26 +47,21 @@ See http://rbjl.net/40-irbtools-release-the-power-of-irb or read the commented s
58
47
  Contains helper methods that might be useful in every-day irb usage, see below for details
59
48
  [clipboard[http://github.com/janlelis/clipboard]] Easy clipboard access
60
49
  [interactive_editor[https://github.com/jberkel/interactive_editor]]
61
- Lets you open vim (or emacs) from within irb to hack something that gets loaded into the current session, also possible: yaml object editing
62
- [zucker[http:/rubyzucker.info]] Nice debug printing (<tt>q</tt>, <tt>o</tt>, <tt>c</tt>, <tt>Object#m</tt>, <tt>Object#d</tt>) and useful pseudo-constants (<tt>Info</tt>, <tt>OS</tt>, <tt>RubyVersion</tt>, <tt>RubyEngine</tt>)
50
+ Lets you open vim (or emacs) from within irb to hack something that gets loaded into the current session
51
+ [zucker[http:/rubyzucker.info]] Print debugging helpers (<tt>q</tt>, <tt>Object#m</tt>, <tt>Object#d</tt>) and information pseudo-constants (<tt>Info</tt>, <tt>OS</tt>, <tt>RubyVersion</tt>, <tt>RubyEngine</tt>)
63
52
  [ap[https://github.com/michaeldv/awesome_print]] Alternative for displaying Ruby objects
64
53
  [coderay[http://coderay.rubychan.de/]] Colorizes Ruby code (<tt>colorize</tt>, <tt>ray</tt>)
65
- [boson[http://tagaholic.me/boson/]] "A command/task framework similar to rake and thor that opens your ruby universe to the commandline and irb."
66
- [methodfinder[https://github.com/citizen428/methodfinder]] Interesting method finder (<tt>mf</tt>)
54
+ [paint[https://github.com/janlelis/paint/]] Enables easy access to terminal colors
55
+ [methodfinder[https://github.com/citizen428/methodfinder]] "A Smalltalk like Method Finder for Ruby" (<tt>mf</tt>)
67
56
  [ori[https://github.com/dadooda/ori]] Adds an <tt>Object#ri</tt> method
68
57
  [method_locator[https://github.com/ryanlecompte/method_locator]] Provides <tt>Object#mlp</tt> (improved version of <tt>Module#ancestors</tt>) and <tt>Object#methods_for(m)</tt> (get this method from all ancestors)
69
58
  [method_source[https://github.com/banister/method_source]] <tt>Object#src</tt> can be shown for Ruby methods
59
+ [alias[http://tagaholic.me/2009/07/07/alias-quickness-in-the-ruby-console.html]] Easily create shortcuts for your favorite methods, even when they are nested, saved in personal yaml file
60
+ [boson[http://tagaholic.me/boson/]] "A command/task framework similar to rake and thor that opens your ruby universe to the commandline and irb."
70
61
  [bond[http://tagaholic.me/bond/]] <b>irbtools-more:</b> Improves irb tab-completion
71
62
  [looksee[https://github.com/oggy/looksee]] <b>irbtools-more:</b> Great load path inspector: <tt>Object#l</tt> (Extended version of <tt>Object#m</tt>), also provides the ability to <tt>Object#edit</tt> methods.
72
- [drx[http://drx.rubyforge.org/]] <b>irbtools-more:</b> A tk object inspector, defines <tt>Object#see</tt>
73
63
  [*fileutils* (stdlib)] Includes file system utility methods: <tt>cd</tt>, <tt>pwd</tt>, <tt>ln_s</tt>, <tt>mv</tt>, <tt>rm</tt>, <tt>mkdir</tt>, <tt>touch</tt>, ... ;)
74
64
 
75
- === Not included anymore
76
-
77
- [sketches[http://sketches.rubyforge.org/]] Another, more flexible "start editor and it gets loaded into your irb session" plugin. It's a great gem, but the reason it's not included anymore is that it's functionality is very similar to the one provided by the interactive_editor gem
78
- [guessmethod[http://guessmethod.rubyforge.org/]] Automatically tries to corrects typos in method names
79
- [rvm_loader] RVM helpers
80
-
81
65
  === Irbtools methods
82
66
 
83
67
  The following general helper methods are defined by <b>every_day_irb</b> (which belongs to *irbtools*)
@@ -173,6 +157,6 @@ There are irbtools extension packages, which can be modified via:
173
157
  These packages add/modify the libraries to be loaded. For an example, see {irbtools-more}[https://github.com/janlelis/irbtools-more].
174
158
 
175
159
  == Copyright
176
- Copyright (c) 2010-2012 Jan Lelis, http://rbjl.net, released under the MIT license.
160
+ Copyright (c) 2010-2013 Jan Lelis <http://happycode.org> released under the MIT license.
177
161
 
178
162
  == J-_-L
data/Rakefile CHANGED
@@ -20,8 +20,8 @@ end
20
20
 
21
21
  desc "Install the gem locally (without docs)"
22
22
  task :install => :gem do
23
- sh %{gem install pkg/#{gemspec2.name}-#{gemspec2.version} --no-rdoc --no-ri}
24
- sh %{gem install pkg/#{gemspec1.name}-#{gemspec1.version} --no-rdoc --no-ri}
23
+ sh %{gem install pkg/#{gemspec2.name}-#{gemspec2.version}.gem --no-rdoc --no-ri}
24
+ sh %{gem install pkg/#{gemspec1.name}-#{gemspec1.version}.gem --no-rdoc --no-ri}
25
25
  end
26
26
 
27
27
  desc "Generate the gemspec"
@@ -1,34 +1,37 @@
1
1
  # -*- encoding: utf-8 -*-
2
- require 'rubygems' unless defined? Gem
2
+ require File.dirname(__FILE__) + '/lib/irbtools/configure'
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = 'irbtools'
6
- s.version = File.read('VERSION').chomp
6
+ s.version = Irbtools::VERSION
7
7
 
8
8
  s.authors = ["Jan Lelis"]
9
- s.summary = 'irbtools is a "meta gem" that installs a bunch of useful irb gems and configures them for you.'
10
- s.description = 'irbtools is a "meta gem" that installs a bunch of useful irb gems and configures them for you. Simply put a require "irbtools" in the .irbrc file in your home directory.'
9
+ s.summary = 'irbtools happy irb.'
10
+ s.description = 'irbtools makes using irb easier and more fun. Simply put a require "irbtools" in the .irbrc file in your home directory.'
11
11
  s.email = 'mail@janlelis.de'
12
12
  s.extra_rdoc_files = %w[LICENSE README.rdoc]
13
- s.files = %w[lib/irbtools.rb lib/irbtools/configure.rb lib/irbtools/libraries.rb lib/irbtools/minimal.rb VERSION CHANGELOG Rakefile irbtools.gemspec]
13
+ s.files = %w[lib/irbtools.rb lib/irbtools/configure.rb lib/irbtools/libraries.rb lib/irbtools/minimal.rb CHANGELOG Rakefile irbtools.gemspec]
14
14
  s.homepage = 'https://github.com/janlelis/irbtools'
15
15
  s.required_ruby_version = '>= 1.9.2'
16
+ s.license = 'MIT'
16
17
 
17
18
  # functionality
18
- s.add_dependency %q<zucker>, ">= 12.1"
19
+ s.add_dependency %q<zucker>, ">= 13.1"
19
20
  s.add_dependency %q<boson>, "~> 1.2.4"
20
- s.add_dependency %q<clipboard>, "~> 1.0.1"
21
+ s.add_dependency %q<boson-more>, "~> 0.2.2"
22
+ s.add_dependency %q<clipboard>, "~> 1.0.5"
21
23
  s.add_dependency %q<interactive_editor>, ">= 0.0.10"
22
24
  s.add_dependency %q<every_day_irb>, ">= #{ s.version }"
25
+ s.add_dependency %q<alias>, "~> 0.2.3"
23
26
 
24
27
  # display
25
- s.add_dependency %q<paint>, ">= 0.8.5"
28
+ s.add_dependency %q<paint>, ">= 0.8.6"
26
29
  s.add_dependency %q<fancy_irb>, ">= 0.7.3"
27
- s.add_dependency %q<wirb>, ">= 0.4.3"
28
- s.add_dependency %q<hirb>, "~> 0.7.0"
29
- s.add_dependency %q<awesome_print>, "~> 1.0.2"
30
- s.add_dependency %q<coderay>, "~> 1.0.8"
31
- s.add_dependency %q<g>, ">= 1.7.1"
30
+ s.add_dependency %q<wirb>, ">= 1.0.1"
31
+ s.add_dependency %q<hirb>, "~> 0.7.1"
32
+ s.add_dependency %q<awesome_print>, "~> 1.1.0"
33
+ s.add_dependency %q<coderay>, "~> 1.0.9"
34
+ s.add_dependency %q<g>, ">= 1.7.2"
32
35
 
33
36
  # introspection / docs
34
37
  s.add_dependency %q<ori>, "~> 0.1.0"
@@ -4,7 +4,7 @@ if defined?(IRB) || defined?(Ripl)
4
4
  # # # # #
5
5
  # require 'irbtools' in your .irbrc
6
6
  # see the README file for more information
7
- require File.expand_path('irbtools/configure', File.dirname(__FILE__) ) unless defined? Irbtools
7
+ require_relative 'irbtools/configure' unless defined? Irbtools
8
8
 
9
9
  # # # # #
10
10
  # load extension packages
@@ -8,7 +8,7 @@
8
8
  # # # # #
9
9
  # define module methods
10
10
  module Irbtools
11
- VERSION = File.read( File.dirname(__FILE__) + '/../../VERSION' ).chomp
11
+ VERSION = "1.5.0"
12
12
 
13
13
  @libraries = { :start => [], :sub_session => [], :autoload => [], :thread => {}, :late => [], :late_thread => {} }
14
14
  @lib_hooks = Hash.new{|h,k| h[k] = [] }
@@ -33,13 +33,12 @@ end
33
33
  # ls, cat, rq, rrq, ld, session_history, reset!, clear, dbg, ...
34
34
  Irbtools.add_library 'every_day_irb', :thread => 10
35
35
 
36
- # nice debug printing (q, o, c, .m, .d)
37
- Irbtools.add_library 'zucker/debug', :thread => 20
38
-
39
- # nice debug printing (ap)
36
+ # print debugging helper (q, #m, #d, Regexp#visualize, ap, g)
37
+ Irbtools.add_library 'zucker/qq', :thread => 20
38
+ Irbtools.add_library 'zucker/mm', :thread => 21
39
+ Irbtools.add_library 'zucker/dd', :thread => 22
40
+ Irbtools.add_library 'zucker/regexp_visualize', :thread => 23
40
41
  Irbtools.add_library 'ap', :thread => 30
41
-
42
- # nice debug printing (g)
43
42
  Irbtools.add_library 'g', :thread => 40 if RbConfig::CONFIG['host_os'] =~ /mac|darwin/
44
43
 
45
44
  # lets you open vim (or your favourite editor), hack something, save it, and it's loaded in the current irb session
@@ -97,6 +96,11 @@ Irbtools.add_library :method_source, :thread => 70 do
97
96
  end
98
97
  end
99
98
 
99
+ Irbtools.add_library :alias, :thread => 80 do
100
+ Alias.create
101
+ extend Alias::Console
102
+ end
103
+
100
104
  # # # load via late
101
105
 
102
106
  # terminal colors
@@ -167,17 +171,23 @@ Irbtools.add_library :hirb, :late_thread => :hirb do
167
171
  end
168
172
 
169
173
  # command framework
170
- Irbtools.add_library :boson, :late_thread => :hirb do
174
+ Irbtools.add_library 'boson/console', :late_thread => :hirb do
175
+ Boson.start
171
176
  end
172
177
 
173
178
 
174
179
  # # # load via autoload
175
180
 
176
- # useful information pseudo-constants
177
- Irbtools.add_library 'zucker/env', :autoload => [:RubyVersion, :RubyEngine, :Info, :OS] do
178
- def rv() RubyVersion end unless defined? rv
181
+ # information pseudo-constants
182
+ Irbtools.add_library 'zucker/info', :autoload => :Info
183
+ Irbtools.add_library 'zucker/os', :autoload => :OS
184
+ Irbtools.add_library 'zucker/engine', :autoload => :RubyEngine do
179
185
  def re() RubyEngine end unless defined? re
180
186
  end
187
+ Irbtools.add_library 'zucker/ruby_version', :autoload => :RubyVersion do
188
+ def rv() RubyVersion end unless defined? rv
189
+ end
190
+
181
191
 
182
192
  # syntax highlight
183
193
  Irbtools.add_library :coderay, :autoload => :CodeRay do
metadata CHANGED
@@ -1,36 +1,32 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: irbtools
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
5
- prerelease:
4
+ version: 1.5.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - Jan Lelis
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2012-12-02 00:00:00.000000000 Z
11
+ date: 2013-05-27 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: zucker
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
17
  - - ! '>='
20
18
  - !ruby/object:Gem::Version
21
- version: '12.1'
19
+ version: '13.1'
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
24
  - - ! '>='
28
25
  - !ruby/object:Gem::Version
29
- version: '12.1'
26
+ version: '13.1'
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: boson
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
31
  - - ~>
36
32
  - !ruby/object:Gem::Version
@@ -38,31 +34,41 @@ dependencies:
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
38
  - - ~>
44
39
  - !ruby/object:Gem::Version
45
40
  version: 1.2.4
41
+ - !ruby/object:Gem::Dependency
42
+ name: boson-more
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ~>
46
+ - !ruby/object:Gem::Version
47
+ version: 0.2.2
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: 0.2.2
46
55
  - !ruby/object:Gem::Dependency
47
56
  name: clipboard
48
57
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
58
  requirements:
51
59
  - - ~>
52
60
  - !ruby/object:Gem::Version
53
- version: 1.0.1
61
+ version: 1.0.5
54
62
  type: :runtime
55
63
  prerelease: false
56
64
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
65
  requirements:
59
66
  - - ~>
60
67
  - !ruby/object:Gem::Version
61
- version: 1.0.1
68
+ version: 1.0.5
62
69
  - !ruby/object:Gem::Dependency
63
70
  name: interactive_editor
64
71
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
72
  requirements:
67
73
  - - ! '>='
68
74
  - !ruby/object:Gem::Version
@@ -70,7 +76,6 @@ dependencies:
70
76
  type: :runtime
71
77
  prerelease: false
72
78
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
79
  requirements:
75
80
  - - ! '>='
76
81
  - !ruby/object:Gem::Version
@@ -78,39 +83,48 @@ dependencies:
78
83
  - !ruby/object:Gem::Dependency
79
84
  name: every_day_irb
80
85
  requirement: !ruby/object:Gem::Requirement
81
- none: false
82
86
  requirements:
83
87
  - - ! '>='
84
88
  - !ruby/object:Gem::Version
85
- version: 1.4.0
89
+ version: 1.5.0
86
90
  type: :runtime
87
91
  prerelease: false
88
92
  version_requirements: !ruby/object:Gem::Requirement
89
- none: false
90
93
  requirements:
91
94
  - - ! '>='
92
95
  - !ruby/object:Gem::Version
93
- version: 1.4.0
96
+ version: 1.5.0
97
+ - !ruby/object:Gem::Dependency
98
+ name: alias
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ~>
102
+ - !ruby/object:Gem::Version
103
+ version: 0.2.3
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ~>
109
+ - !ruby/object:Gem::Version
110
+ version: 0.2.3
94
111
  - !ruby/object:Gem::Dependency
95
112
  name: paint
96
113
  requirement: !ruby/object:Gem::Requirement
97
- none: false
98
114
  requirements:
99
115
  - - ! '>='
100
116
  - !ruby/object:Gem::Version
101
- version: 0.8.5
117
+ version: 0.8.6
102
118
  type: :runtime
103
119
  prerelease: false
104
120
  version_requirements: !ruby/object:Gem::Requirement
105
- none: false
106
121
  requirements:
107
122
  - - ! '>='
108
123
  - !ruby/object:Gem::Version
109
- version: 0.8.5
124
+ version: 0.8.6
110
125
  - !ruby/object:Gem::Dependency
111
126
  name: fancy_irb
112
127
  requirement: !ruby/object:Gem::Requirement
113
- none: false
114
128
  requirements:
115
129
  - - ! '>='
116
130
  - !ruby/object:Gem::Version
@@ -118,7 +132,6 @@ dependencies:
118
132
  type: :runtime
119
133
  prerelease: false
120
134
  version_requirements: !ruby/object:Gem::Requirement
121
- none: false
122
135
  requirements:
123
136
  - - ! '>='
124
137
  - !ruby/object:Gem::Version
@@ -126,87 +139,76 @@ dependencies:
126
139
  - !ruby/object:Gem::Dependency
127
140
  name: wirb
128
141
  requirement: !ruby/object:Gem::Requirement
129
- none: false
130
142
  requirements:
131
143
  - - ! '>='
132
144
  - !ruby/object:Gem::Version
133
- version: 0.4.3
145
+ version: 1.0.1
134
146
  type: :runtime
135
147
  prerelease: false
136
148
  version_requirements: !ruby/object:Gem::Requirement
137
- none: false
138
149
  requirements:
139
150
  - - ! '>='
140
151
  - !ruby/object:Gem::Version
141
- version: 0.4.3
152
+ version: 1.0.1
142
153
  - !ruby/object:Gem::Dependency
143
154
  name: hirb
144
155
  requirement: !ruby/object:Gem::Requirement
145
- none: false
146
156
  requirements:
147
157
  - - ~>
148
158
  - !ruby/object:Gem::Version
149
- version: 0.7.0
159
+ version: 0.7.1
150
160
  type: :runtime
151
161
  prerelease: false
152
162
  version_requirements: !ruby/object:Gem::Requirement
153
- none: false
154
163
  requirements:
155
164
  - - ~>
156
165
  - !ruby/object:Gem::Version
157
- version: 0.7.0
166
+ version: 0.7.1
158
167
  - !ruby/object:Gem::Dependency
159
168
  name: awesome_print
160
169
  requirement: !ruby/object:Gem::Requirement
161
- none: false
162
170
  requirements:
163
171
  - - ~>
164
172
  - !ruby/object:Gem::Version
165
- version: 1.0.2
173
+ version: 1.1.0
166
174
  type: :runtime
167
175
  prerelease: false
168
176
  version_requirements: !ruby/object:Gem::Requirement
169
- none: false
170
177
  requirements:
171
178
  - - ~>
172
179
  - !ruby/object:Gem::Version
173
- version: 1.0.2
180
+ version: 1.1.0
174
181
  - !ruby/object:Gem::Dependency
175
182
  name: coderay
176
183
  requirement: !ruby/object:Gem::Requirement
177
- none: false
178
184
  requirements:
179
185
  - - ~>
180
186
  - !ruby/object:Gem::Version
181
- version: 1.0.8
187
+ version: 1.0.9
182
188
  type: :runtime
183
189
  prerelease: false
184
190
  version_requirements: !ruby/object:Gem::Requirement
185
- none: false
186
191
  requirements:
187
192
  - - ~>
188
193
  - !ruby/object:Gem::Version
189
- version: 1.0.8
194
+ version: 1.0.9
190
195
  - !ruby/object:Gem::Dependency
191
196
  name: g
192
197
  requirement: !ruby/object:Gem::Requirement
193
- none: false
194
198
  requirements:
195
199
  - - ! '>='
196
200
  - !ruby/object:Gem::Version
197
- version: 1.7.1
201
+ version: 1.7.2
198
202
  type: :runtime
199
203
  prerelease: false
200
204
  version_requirements: !ruby/object:Gem::Requirement
201
- none: false
202
205
  requirements:
203
206
  - - ! '>='
204
207
  - !ruby/object:Gem::Version
205
- version: 1.7.1
208
+ version: 1.7.2
206
209
  - !ruby/object:Gem::Dependency
207
210
  name: ori
208
211
  requirement: !ruby/object:Gem::Requirement
209
- none: false
210
212
  requirements:
211
213
  - - ~>
212
214
  - !ruby/object:Gem::Version
@@ -214,7 +216,6 @@ dependencies:
214
216
  type: :runtime
215
217
  prerelease: false
216
218
  version_requirements: !ruby/object:Gem::Requirement
217
- none: false
218
219
  requirements:
219
220
  - - ~>
220
221
  - !ruby/object:Gem::Version
@@ -222,7 +223,6 @@ dependencies:
222
223
  - !ruby/object:Gem::Dependency
223
224
  name: methodfinder
224
225
  requirement: !ruby/object:Gem::Requirement
225
- none: false
226
226
  requirements:
227
227
  - - ! '>='
228
228
  - !ruby/object:Gem::Version
@@ -230,7 +230,6 @@ dependencies:
230
230
  type: :runtime
231
231
  prerelease: false
232
232
  version_requirements: !ruby/object:Gem::Requirement
233
- none: false
234
233
  requirements:
235
234
  - - ! '>='
236
235
  - !ruby/object:Gem::Version
@@ -238,7 +237,6 @@ dependencies:
238
237
  - !ruby/object:Gem::Dependency
239
238
  name: method_locator
240
239
  requirement: !ruby/object:Gem::Requirement
241
- none: false
242
240
  requirements:
243
241
  - - ! '>='
244
242
  - !ruby/object:Gem::Version
@@ -246,7 +244,6 @@ dependencies:
246
244
  type: :runtime
247
245
  prerelease: false
248
246
  version_requirements: !ruby/object:Gem::Requirement
249
- none: false
250
247
  requirements:
251
248
  - - ! '>='
252
249
  - !ruby/object:Gem::Version
@@ -254,7 +251,6 @@ dependencies:
254
251
  - !ruby/object:Gem::Dependency
255
252
  name: method_source
256
253
  requirement: !ruby/object:Gem::Requirement
257
- none: false
258
254
  requirements:
259
255
  - - ! '>='
260
256
  - !ruby/object:Gem::Version
@@ -262,14 +258,12 @@ dependencies:
262
258
  type: :runtime
263
259
  prerelease: false
264
260
  version_requirements: !ruby/object:Gem::Requirement
265
- none: false
266
261
  requirements:
267
262
  - - ! '>='
268
263
  - !ruby/object:Gem::Version
269
264
  version: 0.8.1
270
- description: irbtools is a "meta gem" that installs a bunch of useful irb gems and
271
- configures them for you. Simply put a require "irbtools" in the .irbrc file in your
272
- home directory.
265
+ description: irbtools makes using irb easier and more fun. Simply put a require "irbtools"
266
+ in the .irbrc file in your home directory.
273
267
  email: mail@janlelis.de
274
268
  executables: []
275
269
  extensions: []
@@ -281,14 +275,15 @@ files:
281
275
  - lib/irbtools/configure.rb
282
276
  - lib/irbtools/libraries.rb
283
277
  - lib/irbtools/minimal.rb
284
- - VERSION
285
278
  - CHANGELOG
286
279
  - Rakefile
287
280
  - irbtools.gemspec
288
281
  - LICENSE
289
282
  - README.rdoc
290
283
  homepage: https://github.com/janlelis/irbtools
291
- licenses: []
284
+ licenses:
285
+ - MIT
286
+ metadata: {}
292
287
  post_install_message: ! " ┌── info ──────────────────────────────┐\n J-_-L │
293
288
  https://github.com/janlelis/irbtools │\n ├── usage ─────────────────────────────┤\n
294
289
  \ │ require 'irbtools' │\n └──────────────────────────────────────┘"
@@ -296,23 +291,20 @@ rdoc_options: []
296
291
  require_paths:
297
292
  - lib
298
293
  required_ruby_version: !ruby/object:Gem::Requirement
299
- none: false
300
294
  requirements:
301
295
  - - ! '>='
302
296
  - !ruby/object:Gem::Version
303
297
  version: 1.9.2
304
298
  required_rubygems_version: !ruby/object:Gem::Requirement
305
- none: false
306
299
  requirements:
307
300
  - - ! '>='
308
301
  - !ruby/object:Gem::Version
309
302
  version: '0'
310
303
  requirements: []
311
304
  rubyforge_project:
312
- rubygems_version: 1.8.24
305
+ rubygems_version: 2.0.3
313
306
  signing_key:
314
- specification_version: 3
315
- summary: irbtools is a "meta gem" that installs a bunch of useful irb gems and configures
316
- them for you.
307
+ specification_version: 4
308
+ summary: irbtools happy irb.
317
309
  test_files: []
318
310
  has_rdoc:
data/VERSION DELETED
@@ -1 +0,0 @@
1
- 1.4.0