irbtools-more 2.2.0 → 2.2.1

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: 98801068d00f4269582e1803362274432c79db40
4
- data.tar.gz: 528d84e9efc5b1df4f3a89202296d981de4631c0
3
+ metadata.gz: a5a20dd948c1d72c87c8241f0bcd947362b852fa
4
+ data.tar.gz: 5b9e27b44f2575c65b55071aa6adc4a0a1b02078
5
5
  SHA512:
6
- metadata.gz: 4690cb13e7b83edb96d3f6558728bb7bf0afdb41af3b66a5b8338bbd80306b5a062e6fccbf6aff3544233351aedda937d36474c2f896d1dcff06b6c16e126367
7
- data.tar.gz: 35baf212de3ada31d31294432e1cf87dadcd81cfd7f8d471e6cd19e91450c2442b2772e50aabe0b661b192f471b7c55ea0ec576ab4e2dbd8859805a0e7245f6d
6
+ metadata.gz: c95d7afe23e427eae35d2ea37a1258b96319d0e3329f045f3355dcf4733b8be0987923ebad17a3905e65f473ae8b956e3c6ae11167769ed8641b80cced3d86d8
7
+ data.tar.gz: e8d31e0fad815144ee0d42d8883867623e753848c309e13639123d1af498f3ceea84fd6abc00fae1858bc83a81cab0b3b913d2fbb01da02112ceec6ed8f3bf1e
@@ -1,3 +1,6 @@
1
+ == 2.2.1
2
+ * Add core_docs dependency
3
+
1
4
  == 2.2.0
2
5
  * Re-enable looksee (not comptible with Ruby 2.3, but does not crash anymore during install)
3
6
 
data/README.md CHANGED
@@ -50,7 +50,7 @@ and edit your Gemfile to
50
50
 
51
51
  * Colored output:
52
52
  [wirb](https://github.com/janlelis/wirb/)
53
- [fanycy_irb](https://github.com/janlelis/fancy_irb)
53
+ [fancy_irb](https://github.com/janlelis/fancy_irb)
54
54
  * Custom views for specific objects:
55
55
  [hirb](http://tagaholic.me/2009/03/13/hirb-irb-on-the-good-stuff.html)
56
56
  * **(irbtools-more)** Correction suggestions for misspelled method/constant names:
@@ -78,7 +78,7 @@ and edit your Gemfile to
78
78
  * Access to *ri* docs:
79
79
  [ori](https://github.com/dadooda/ori)
80
80
  * Manipulate instance variables with ease:
81
- [instance](https://github.com/rubyworks/instance/)
81
+ [instance](https://github.com/rubyworks/instance/) (not loaded in Rails context)
82
82
  * Platform information:
83
83
  [ruby_version](https://github.com/janlelis/ruby_version)
84
84
  [ruby_engine](https://github.com/janlelis/ruby_engine)
@@ -102,7 +102,7 @@ Method | Arguments | Description
102
102
  `cat` | path | Read file contents.
103
103
  `cd` | path = nil | Changes the directory. Can also be used in these forms: `~cd` (change to home directory), `-cd` (change to previous directory).
104
104
  `clear` | | Clear the terminal.
105
- `code` | object = self, method_name | Display the method source with syntax highlighting. Will also look up C methods if the **core_docs** gem is available.
105
+ `code` | object = self, method_name | Display the method source with syntax highlighting. Will also look up C methods if the **core_docs** gem (which is included in **irbtools-more**) is available.
106
106
  `colorize` | string | Syntax highlight a Ruby string.
107
107
  `copy` | string | Copy something to the clipboard.
108
108
  `copy_input` | | Copy session history to the clipboard.
@@ -129,7 +129,7 @@ Method | Arguments | Description
129
129
  `session_history` | number_of_lines = nil | Return a string of all commands issued in the current session.
130
130
  `version` | | Show the Ruby version.
131
131
  `wp` | inspect_string | Syntax-highlight a Ruby object.
132
- `Object#instance` | | Proxy object to read and manipulate instance variables / run eval.
132
+ `Object#instance` | | Proxy object to read and manipulate instance variables / run eval (not loaded in Rails context).
133
133
  `Object#lp` | | **(irbtools-more)** Supercharged method introspection in IRB.
134
134
  `Object#mlp` / `Object#method_lookup_path` | | Traverse an object's method lookup path to find all places where a method may be defined.
135
135
  `Object#ri` | *args | Show ri documentation for this object or method.
@@ -27,6 +27,7 @@ Gem::Specification.new do |s|
27
27
  s.add_dependency 'irbtools', '~> 2.0'
28
28
  s.add_dependency 'bond', '~> 0.5'
29
29
  s.add_dependency 'looksee' , '~> 4.0'
30
+ s.add_dependency 'core_docs', '>= 0.9.2'
30
31
  s.add_dependency 'binding_of_caller', '~> 0.7'
31
32
  s.add_dependency 'did_you_mean', '~> 1.0'
32
33
  end
@@ -1,5 +1,5 @@
1
1
  module Irbtools
2
2
  module More
3
- VERSION = '2.2.0'.freeze
3
+ VERSION = '2.2.1'.freeze
4
4
  end
5
5
  end
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: 2.2.0
4
+ version: 2.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Lelis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-09-24 00:00:00.000000000 Z
11
+ date: 2017-11-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: irbtools
@@ -52,6 +52,20 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '4.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: core_docs
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: 0.9.2
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: 0.9.2
55
69
  - !ruby/object:Gem::Dependency
56
70
  name: binding_of_caller
57
71
  requirement: !ruby/object:Gem::Requirement
@@ -118,7 +132,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
118
132
  version: '0'
119
133
  requirements: []
120
134
  rubyforge_project:
121
- rubygems_version: 2.4.8
135
+ rubygems_version: 2.6.13
122
136
  signing_key:
123
137
  specification_version: 4
124
138
  summary: irbtools-more adds bond and looksee to IRB.