Circuits
Express logical circuits in code!
How it works
You define components in terms of other component's inputs and outputs. Every "tick" the components compute their next outputs. In between each "tick" the "tock" will update the outputs before the next tick
Installation
Add this line to your application's Gemfile:
gem 'circuits'
And then execute:
$ bundle
Or install it yourself as:
$ gem install circuits
Usage
Using a component
and_gate = Circuits::Component::And.new
# Set the inputs
and_gate.a.set true
and_gate.b.set false
# Update the AND gate
and_gate.tick # compute the next output from the inputs
and_gate.tock # apply to the output after all components have "ticked"
# Get the output
and_gate.out.get # false
Linking components
and_gate = Circuits::Component::And.new
not_gate = Circuits::Component::Not.new
not_gate.in.set and_gate.out
Contributing
- Fork it ( https://github.com/meringu/circuits/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Make your changes
- Run the tests (
bundle exec rake
) - Bump the version ( http://semver.org/ )
- Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request