find_refined 0.2.1 → 0.2.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 45fececacb1745b1727dd35d6abc1935ae6a1288
4
- data.tar.gz: 96807a920919db840fd49711b373bbc124459696
2
+ SHA256:
3
+ metadata.gz: f34c11adc4935c20468d0177798179b18666ef0aa325f41ecb60961046c88961
4
+ data.tar.gz: 46f849951b9844e82c63a5f14a441aa36a3b7d9646ad29210cccda73e4076c77
5
5
  SHA512:
6
- metadata.gz: 6c70f2ac4a297436a62f6bebb78fd47064e5ea169f53e02eb72d6db1a0794492a5e74e13938b1c2f3387e6a7cf8d802feb1a9fba0d052acece0c8afa96102486
7
- data.tar.gz: 2ec0d6efd8ce41a0e7ed26f47bf438549e9f97db5b33cc1b481478f9f8bafee84e2756674ffe785da67a6fd451194b845482dac20b2a57a06c566ad2b38f76bc
6
+ metadata.gz: 6a6d34b87d2968c9f93aa144d857b54df5ebb8e030657944eea15ef4279e42eb78bd08995cdaf346004551017e41ee7d5a6476f66bf4b77b019c5a299a4e8d13
7
+ data.tar.gz: bffe4583d47b7ef6dbe001bed8916b731ffc85f546bb520b38f775c175445c09d321e1129883e9b05216eb9ef5ff36598e418f8b2b6f7fea61c8fb4a2398ba5f
data/README.md CHANGED
@@ -46,7 +46,7 @@ FindRefined.find(MyModule, String) #=> [:to_string]
46
46
  ```ruby
47
47
  find # Find refined methods in given module and class type
48
48
  find_ancestors # Find refined methods in given module and class type and all it's ancestors
49
- find_basci # Find refined methods in given module and all basic class types (Array, Hash, NilClass, Numeric, Range, String, Symbol)
49
+ find_basic # Find refined methods in given module and all basic class types (Array, Hash, NilClass, Numeric, Range, String, Symbol)
50
50
  ```
51
51
 
52
52
  ## Development
data/find_refined.gemspec CHANGED
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
11
11
 
12
12
  spec.summary = %q{Find refined methods in modules.}
13
13
  spec.description = %q{Provides list of methods refined in specified modules.}
14
- spec.homepage = "http://flexybiz.com"
14
+ spec.homepage = "https://github.com/flexybiz/find_refined"
15
15
  spec.license = "MIT"
16
16
 
17
17
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
@@ -1,3 +1,3 @@
1
1
  module FindRefined
2
- VERSION = "0.2.1"
2
+ VERSION = "0.2.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: find_refined
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yevgeniy Anfilofyev
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-10-23 00:00:00.000000000 Z
11
+ date: 2018-01-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -72,7 +72,7 @@ files:
72
72
  - lib/find_refined.rb
73
73
  - lib/find_refined/finder.rb
74
74
  - lib/find_refined/version.rb
75
- homepage: http://flexybiz.com
75
+ homepage: https://github.com/flexybiz/find_refined
76
76
  licenses:
77
77
  - MIT
78
78
  metadata: {}
@@ -92,7 +92,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
92
92
  version: '0'
93
93
  requirements: []
94
94
  rubyforge_project:
95
- rubygems_version: 2.6.13
95
+ rubygems_version: 2.7.3
96
96
  signing_key:
97
97
  specification_version: 4
98
98
  summary: Find refined methods in modules.