irbtools-more 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.
checksums.yaml ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ MWZkNTY4MGVkNmZlYWRjNWIzODliODBhY2VhNTA5NDdhZWY3MThiYg==
5
+ data.tar.gz: !binary |-
6
+ ZjE4NzU1MWNhZDE0NWIyNGM1NjYwYTcyOTY1NWFiMDJmZjI0MTc2YQ==
7
+ !binary "U0hBNTEy":
8
+ metadata.gz: !binary |-
9
+ Y2Y0YjE2NzE4YjQ4YzI3MmVhZWM1Mjg5YzRiYTAxZDg1NjM4OWQ4N2E1ZTcz
10
+ ZjAzNzhkZjc4MmUwNzMxMTc1NGNhYmU1ZDRmZDRjOWMxNzk3MTU2ZjA1MjUz
11
+ MWRkNTQ1ODQyZTk5ODQxNzk5MzU2NjE4ZTE3YjllZGIzY2EwZTI=
12
+ data.tar.gz: !binary |-
13
+ YzdiOWY4ZDliYzJmZDY4MjEzZWMxMDNmYjJmN2ZjYzk2MWQ5ODljYzE0NzFk
14
+ NWYxYWVkZjk5NWVkMjlkNjFhNTM3Zjk5YzIzMDk0NDkzNTg5MWQ0NWVjNmUw
15
+ N2U3MWYwYzU1OGQ5Y2Q0Mzg0YzQ1NzE4YWU1ZWMxZjRhNmYyYmQ=
data/CHANGELOG CHANGED
@@ -1,3 +1,8 @@
1
+ == 1.5.0
2
+ * Ruby 2.0 Compatibility
3
+ * Drop 1.8 Support
4
+ * Drop DrX gem
5
+
1
6
  == 1.2.0
2
7
  * add looksee
3
8
 
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
data/README.rdoc CHANGED
@@ -1,23 +1,15 @@
1
1
  = irbtools-more
2
2
 
3
- The {irbtools gem}[https://github.com/janlelis/irbtools] is a meta gem that installs handy and useful irb gems and provides an appealing ready-to-use irb configuration. It has a modular structure and supports multiple library-loading mechanisms, e.g. via <tt>autoload</tt> or threads.
4
-
5
- <tt>irbtools-more</tt> adds some more irb gems which may not build out-of-the-box. Currently included: bond, looksee and drx. See the {irbtools readme}[https://github.com/janlelis/irbtools] for details.
6
-
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.
7
4
 
8
5
  == Setup
9
6
 
10
7
  gem install irbtools-more
11
-
12
- In a Gemfile, you need to add:
13
-
14
- gem 'irbtools-more', :require => false
15
8
 
16
9
  == Usage
17
10
 
18
11
  To use it, put the following in your <tt>~/.irbrc</tt> file (this file is loaded every time you start an irb):
19
12
 
20
- require 'rubygems' # only needed in 1.8
21
13
  require 'irbtools/more'
22
14
 
23
15
  If it does not exist, just create a new one. It's possible to modify, which libraries get loaded:
@@ -27,8 +19,16 @@ If it does not exist, just create a new one. It's possible to modify, which libr
27
19
  # here you can edit which libraries get loaded. See the irbtools README for details.
28
20
  Irbtools.start
29
21
 
22
+ == Bundler Environments
23
+
24
+ In the <tt>Gemfile</tt>, you need to add:
25
+
26
+ gem 'irbtools-more', :require => false
27
+
28
+ Another way is to add a {debundle hack}[https://github.com/janlelis/debundle.rb] at the beginning of your <tt>~/.irbrc</tt>.
29
+
30
30
  == Copyright
31
31
 
32
- Copyright (c) 2010-2012 Jan Lelis, http://rbjl.net. See LICENSE for details.
32
+ Copyright (c) 2010-2013 Jan Lelis, http://happycode.org. See LICENSE for details.
33
33
 
34
34
  == J-_-L
data/Rakefile CHANGED
@@ -16,7 +16,7 @@ end
16
16
 
17
17
  desc "Install the gem locally"
18
18
  task :install => :gem do
19
- sh %{gem install pkg/#{gemspec.name}-#{gemspec.version} --no-rdoc --no-ri}
19
+ sh %{gem install pkg/#{gemspec.name}-#{gemspec.version}.gem --no-rdoc --no-ri}
20
20
  end
21
21
 
22
22
  desc "Generate the gemspec"
@@ -1,5 +1,4 @@
1
1
  # -*- encoding: utf-8 -*-
2
- require 'rubygems' unless defined? Gem
3
2
  require File.dirname(__FILE__) + "/lib/irbtools/more"
4
3
 
5
4
  Gem::Specification.new do |s|
@@ -7,15 +6,14 @@ Gem::Specification.new do |s|
7
6
  s.version = Irbtools::More::VERSION
8
7
  s.authors = ["Jan Lelis"]
9
8
  s.email = %q{mail@janlelis.de}
10
- s.homepage = %q{http://github.com/janlelis/irbtools-more}
11
- s.summary = 'irbtools is a "meta gem" that installs a bunch of useful irb gems and configures them for you.'
12
- s.description = 'irbtools is a "meta gem" that installs a bnuch of useful irb gems and configures them for you. irbtools-more adds some gems which may not build out-of-the-box. Simply put a require "irbtools/more" in the .irbrc file in your home directory.'
9
+ s.homepage = %q{https://github.com/janlelis/irbtools-more}
10
+ s.summary = 'irbtools-more adds advancded gems like bond or looksee to irbtools.'
11
+ 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.'
13
12
  s.extra_rdoc_files = %w[LICENSE README.rdoc]
14
- s.files = Dir.glob(%w[lib/**/*.rb ]) + %w{VERSION CHANGELOG Rakefile irbtools-more.gemspec}
15
- s.required_ruby_version = '>= 1.8.7'
16
- s.add_dependency 'irbtools', '>= 1.2.0'
17
- s.add_dependency %q<bond>, '~> 0.4.1'
18
- s.add_dependency %q<looksee>, '~> 1.0.3'
19
- s.add_dependency %q<drx>
13
+ s.files = Dir.glob(%w[lib/**/*.rb ]) + %w{CHANGELOG Rakefile irbtools-more.gemspec}
14
+ s.required_ruby_version = '>= 1.9.2'
15
+ s.add_dependency 'irbtools', '~> 1.5.0'
16
+ s.add_dependency 'bond', '~> 0.4.3'
17
+ s.add_dependency 'looksee' , '~> 1.1.0'
20
18
  end
21
19
 
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 = ( File.read File.expand_path( '../../VERSION', File.dirname(__FILE__)) ).chomp
7
+ VERSION = '1.5.0'
8
8
  end
9
9
  end
10
10
 
@@ -19,9 +19,6 @@ end
19
19
 
20
20
  # # # libraries
21
21
 
22
- # TK object inspector
23
- Irbtools.add_library :drx, :thread => 'more_1'
24
-
25
22
  # Better auto-completion
26
23
  Irbtools.add_library :bond, :thread => 'more_2' do
27
24
  Bond.start :gems => %w[irbtools]
metadata CHANGED
@@ -1,83 +1,60 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: irbtools-more
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: irbtools
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - ~>
20
18
  - !ruby/object:Gem::Version
21
- version: 1.2.0
19
+ version: 1.5.0
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: 1.2.0
26
+ version: 1.5.0
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: bond
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
31
  - - ~>
36
32
  - !ruby/object:Gem::Version
37
- version: 0.4.1
33
+ version: 0.4.3
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
- version: 0.4.1
40
+ version: 0.4.3
46
41
  - !ruby/object:Gem::Dependency
47
42
  name: looksee
48
43
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
44
  requirements:
51
45
  - - ~>
52
46
  - !ruby/object:Gem::Version
53
- version: 1.0.3
47
+ version: 1.1.0
54
48
  type: :runtime
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
51
  requirements:
59
52
  - - ~>
60
53
  - !ruby/object:Gem::Version
61
- version: 1.0.3
62
- - !ruby/object:Gem::Dependency
63
- name: drx
64
- requirement: !ruby/object:Gem::Requirement
65
- none: false
66
- requirements:
67
- - - ! '>='
68
- - !ruby/object:Gem::Version
69
- version: '0'
70
- type: :runtime
71
- prerelease: false
72
- version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
- requirements:
75
- - - ! '>='
76
- - !ruby/object:Gem::Version
77
- version: '0'
78
- description: irbtools is a "meta gem" that installs a bnuch of useful irb gems and
79
- configures them for you. irbtools-more adds some gems which may not build out-of-the-box.
80
- Simply put a require "irbtools/more" in the .irbrc file in your home directory.
54
+ version: 1.1.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.
81
58
  email: mail@janlelis.de
82
59
  executables: []
83
60
  extensions: []
@@ -87,36 +64,33 @@ extra_rdoc_files:
87
64
  files:
88
65
  - lib/bond/completions/irbtools.rb
89
66
  - lib/irbtools/more.rb
90
- - VERSION
91
67
  - CHANGELOG
92
68
  - Rakefile
93
69
  - irbtools-more.gemspec
94
70
  - LICENSE
95
71
  - README.rdoc
96
- homepage: http://github.com/janlelis/irbtools-more
72
+ homepage: https://github.com/janlelis/irbtools-more
97
73
  licenses: []
74
+ metadata: {}
98
75
  post_install_message:
99
76
  rdoc_options: []
100
77
  require_paths:
101
78
  - lib
102
79
  required_ruby_version: !ruby/object:Gem::Requirement
103
- none: false
104
80
  requirements:
105
81
  - - ! '>='
106
82
  - !ruby/object:Gem::Version
107
- version: 1.8.7
83
+ version: 1.9.2
108
84
  required_rubygems_version: !ruby/object:Gem::Requirement
109
- none: false
110
85
  requirements:
111
86
  - - ! '>='
112
87
  - !ruby/object:Gem::Version
113
88
  version: '0'
114
89
  requirements: []
115
90
  rubyforge_project:
116
- rubygems_version: 1.8.24
91
+ rubygems_version: 2.0.3
117
92
  signing_key:
118
- specification_version: 3
119
- summary: irbtools is a "meta gem" that installs a bunch of useful irb gems and configures
120
- them for you.
93
+ specification_version: 4
94
+ summary: irbtools-more adds advancded gems like bond or looksee to irbtools.
121
95
  test_files: []
122
96
  has_rdoc:
data/VERSION DELETED
@@ -1 +0,0 @@
1
- 1.4.0