Select matching planets by a kind of flexible query syntax.
PlanetMatcher.new('location:leipzig').match? 'location' => ['leipzig', 'halle']
# => trueMatches the planet with exact same id:
id=mars
Matches the planet with exact same id but ignores case-sensitive:
id:^(?i)mars$
Matches any productive planet in Germany:
location:germany@env=prod
Matches any productive planet out of Germany:
%location:germany@env=prod
Add the line below to your build_config.rb:
MRuby::Build.new do |conf|
# ... (snip) ...
conf.gem 'mruby-planet-matcher', github: 'katzer/mruby-planet-matcher'
endOr add this line to your aplication's mrbgem.rake:
MRuby::Gem::Specification.new('your-mrbgem') do |spec|
# ... (snip) ...
spec.add_dependency 'mruby-planet-matcher', github: 'katzer/mruby-planet-matcher'
endClone the repo:
$ git clone https://github.com/katzer/mruby-planet-matcher.git && cd mruby-planet-matcher/
Compile the source:
$ rake compile
Run the tests:
$ rake test
Bug reports and pull requests are welcome on GitHub at https://github.com/katzer/mruby-planet-matcher.
- Fork it
- 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 new Pull Request
The mgem is available as open source under the terms of the MIT License.
Made with ❤️ in Leipzig
© 2019 Sebastián Katzer