methodfinder 2.1.0 → 2.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.rdoc +1 -1
- data/lib/methodfinder.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a80f6617e6197ecbcbb4415915977ef45089cc70
|
4
|
+
data.tar.gz: 151f90cc0a3046fbaf12ecee7ff40ee32238ac6e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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]
|
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
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.
|
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-
|
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.
|
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
|