项目作者: eugeniobruno

项目描述 :
Logica is a framework to reify and work with predicates.
高级语言: Ruby
项目地址: git://github.com/eugeniobruno/logica.git
创建时间: 2017-06-20T19:22:12Z
项目社区:https://github.com/eugeniobruno/logica

开源协议:MIT License

下载


Logica

Gem Version
Build Status
Coverage Status
Code Climate
Dependency Status

Logica is a reusable implementation of the Specification design pattern, or a framework to manage predicates of arbitrary complexity.

Installation

Add this line to your application’s Gemfile:

  1. gem 'logica'

And then execute:

  1. $ bundle

Or install it yourself as:

  1. $ gem install logica

Usage

Here is a simple example:

  1. class IsEven < Logica::Predicates::Base
  2. def satisfied_by?(number)
  3. number.even?
  4. end
  5. end
  6. class IsGreaterThan < Logica::Predicates::Base
  7. attr_reader :threshold
  8. def initialize(threshold)
  9. @threshold = threshold
  10. end
  11. def satisfied_by?(number)
  12. number > threshold
  13. end
  14. end
  15. is_even = IsEven.new
  16. is_even.satisfied_by?(1) # false
  17. is_even.satisfied_by?(2) # true
  18. is_even.negated.satisfied_by?(3) # true
  19. is_even.negated.satisfied_by?(4) # false
  20. is_greater_than_five = IsGreaterThan.new(5)
  21. is_greater_than_five.satisfied_by?(5) # false
  22. is_greater_than_five.satisfied_by?(6) # true
  23. is_even.and(is_greater_than_five).satisfied_by?(6) # true
  24. is_even.and(is_greater_than_five).satisfied_by?(7) # false
  25. is_even.or(is_greater_than_five).satisfied_by?(8) # true
  26. is_even.or(is_greater_than_five).satisfied_by?(9) # true

More examples that show many more features can be found in the test files.

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake test to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/eugeniobruno/logica. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.