PecoSelector
Select objects with peco.
Installation
Add this line to your application's Gemfile:
gem 'peco_selector'
And then execute:
$ bundle
Usage
bob = Object.new
alice = Object.new
result = PecoSelector.select_from(bob: bob, alice: alice)
# or
result = PecoSelector.select_from([['bob', bob], ['alice', alice]])
result # => [bob]
result = PecoSelector.select_from(['bob', 'alice'])
result # => ['bob']
Contributing
- Fork it ( https://github.com/[my-github-username]/peco_selector/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request