Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fazibear/frubby
Bring fuzzy_match directly into ruby.
https://github.com/fazibear/frubby
Last synced: 2 months ago
JSON representation
Bring fuzzy_match directly into ruby.
- Host: GitHub
- URL: https://github.com/fazibear/frubby
- Owner: fazibear
- Created: 2015-01-07T16:30:27.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2020-02-29T08:34:23.000Z (almost 5 years ago)
- Last Synced: 2024-08-09T18:55:08.058Z (5 months ago)
- Language: Ruby
- Homepage:
- Size: 14.6 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# frubby [![Gem Version](https://badge.fury.io/rb/frubby.svg)](http://badge.fury.io/rb/frubby) [![Build Status](https://travis-ci.org/fazibear/frubby.svg?branch=master)](https://travis-ci.org/fazibear/frubby) [![Code Climate](https://codeclimate.com/github/fazibear/frubby/badges/gpa.svg)](https://codeclimate.com/github/fazibear/frubby)
Bring fuzzy_match directly into ruby. Now typos makes no difference.### Install
```
gem install frubby
```### Example
```ruby
require 'frubby'class FancyTestClass
def initialize
@count = 0
enddef inc
@count += 1
enddef dec
@count -= 1
enddef inc_five
@count += 5
enddef count
@count
end
endfr = FncyTstClas.new
fr.incc
fr.in
fr.in_fv
piuts fr.cunt # => 7
```### License
Copyright (c) 2015 Michał Kalbarczyk
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.