methodfinder 2.1.0 → 2.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.rdoc +1 -1
  3. data/lib/methodfinder.rb +1 -1
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6a9a69705744aeafd4eb6e25c3909a44cdd6e650
4
- data.tar.gz: a5b5f61da2e85b791b95e954fa9355d6f545ffe6
3
+ metadata.gz: a80f6617e6197ecbcbb4415915977ef45089cc70
4
+ data.tar.gz: 151f90cc0a3046fbaf12ecee7ff40ee32238ac6e
5
5
  SHA512:
6
- metadata.gz: 0a743f6b177ed4adf72fade44e5a84e8b68ae0f813e6410d70333d83fffb6c641881f6b0127dc5e7ac77a4dec979b972e1148a610e46bfcab98af4dabcd0f453
7
- data.tar.gz: 7d6463f11b889aa7728d4c595567fb804ee19f1f5ee06ad5a00a03b2666c30fa174ce01e8d4b98c8be14113a3bba6c2b9e51969a0584bb5d2b4dbf553123df49
6
+ metadata.gz: 22d5e8adba4381b0e60cd84fc037ada1163cf26aa7d9e296e5582574cdcfc6cdd95ae85284171b6478d9719ab71d760d64509e42277919b05ea5f9fff5c8d59d
7
+ data.tar.gz: 9c755fd27ada3784b0a3fb1c662d6d7104b2ae2e963332bd1b73b1fc36c257b5e41100a1942c99425c06057fb3a041648d113364ababd96db75316bee57ab07a
data/README.rdoc CHANGED
@@ -110,7 +110,7 @@ I initially wrote this for the students of the core Ruby course on {RubyLearning
110
110
  * Jan Lelis for {implementing blacklists}[https://github.com/citizen428/methodfinder/issues/closed#issue/4].
111
111
  * Brian Morearty for pointing out an {incompatibility with Ruby 1.8.7}[https://github.com/citizen428/methodfinder/pull/5] and adding the {blockless version}[https://github.com/citizen428/methodfinder/pull/6] of <tt>Object#find_method</tt>.
112
112
  * Stefan Kanev for {adding Pry support}[https://github.com/citizen428/methodfinder/pull/7].
113
- * chocolateboy for {compatibility fixes and updates}[https://github.com/citizen428/methodfinder/pull/8] as well as {the intitial debug implementation}[https://github.com/citizen428/methodfinder/pull/9].
113
+ * chocolateboy for {compatibility fixes and updates}[https://github.com/citizen428/methodfinder/pull/8], {the intitial debug implementation}[https://github.com/citizen428/methodfinder/pull/9], {fixes to keyword argument propagation}[https://github.com/citizen428/methodfinder/pull/11].
114
114
 
115
115
  == License
116
116
 
data/lib/methodfinder.rb CHANGED
@@ -30,7 +30,7 @@ class Object
30
30
  end
31
31
  mets.map { |m| "#{self.method(m).owner}##{m}" }
32
32
  else
33
- MethodFinder.find(self, *args)
33
+ MethodFinder.find(self, *args, debug: debug)
34
34
  end
35
35
  end
36
36
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: methodfinder
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
4
+ version: 2.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Kohl
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-02-05 00:00:00.000000000 Z
11
+ date: 2017-10-28 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: A Smalltalk-like Method Finder for Ruby with some extra features
14
14
  email: citizen428@gmail.com
@@ -39,7 +39,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
39
39
  version: '0'
40
40
  requirements: []
41
41
  rubyforge_project:
42
- rubygems_version: 2.5.2
42
+ rubygems_version: 2.6.13
43
43
  signing_key:
44
44
  specification_version: 4
45
45
  summary: A Smalltalk-like Method Finder for Ruby